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

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

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

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

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property resolutionTime The date and time when the image path for the model resolved to the `ResolvedImage`
 * @property resolvedImage The specific digest path of the image hosted in this `ProductionVariant` .
 * @property specifiedImage The image path you specified when you created the model.
 */
public data class InferenceComponentDeployedImage(
    public val resolutionTime: String? = null,
    public val resolvedImage: String? = null,
    public val specifiedImage: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.InferenceComponentDeployedImage): InferenceComponentDeployedImage = InferenceComponentDeployedImage(
            resolutionTime = javaType.resolutionTime().map({ args0 -> args0 }).orElse(null),
            resolvedImage = javaType.resolvedImage().map({ args0 -> args0 }).orElse(null),
            specifiedImage = javaType.specifiedImage().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy