All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.sagemaker.kotlin.outputs.InferenceExperimentSchedule.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.sagemaker.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * The duration for which you want the inference experiment to run.
 * @property endTime The timestamp at which the inference experiment ended or will end.
 * @property startTime The timestamp at which the inference experiment started or will start.
 */
public data class InferenceExperimentSchedule(
    public val endTime: String? = null,
    public val startTime: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.InferenceExperimentSchedule): InferenceExperimentSchedule = InferenceExperimentSchedule(
            endTime = javaType.endTime().map({ args0 -> args0 }).orElse(null),
            startTime = javaType.startTime().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy