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

com.pulumi.awsnative.sagemaker.kotlin.inputs.InferenceComponentDeployedImageArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.sagemaker.kotlin.inputs

import com.pulumi.awsnative.sagemaker.inputs.InferenceComponentDeployedImageArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @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 InferenceComponentDeployedImageArgs(
    public val resolutionTime: Output? = null,
    public val resolvedImage: Output? = null,
    public val specifiedImage: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.sagemaker.inputs.InferenceComponentDeployedImageArgs =
        com.pulumi.awsnative.sagemaker.inputs.InferenceComponentDeployedImageArgs.builder()
            .resolutionTime(resolutionTime?.applyValue({ args0 -> args0 }))
            .resolvedImage(resolvedImage?.applyValue({ args0 -> args0 }))
            .specifiedImage(specifiedImage?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [InferenceComponentDeployedImageArgs].
 */
@PulumiTagMarker
public class InferenceComponentDeployedImageArgsBuilder internal constructor() {
    private var resolutionTime: Output? = null

    private var resolvedImage: Output? = null

    private var specifiedImage: Output? = null

    /**
     * @param value The date and time when the image path for the model resolved to the `ResolvedImage`
     */
    @JvmName("aidalaclmdvuoxea")
    public suspend fun resolutionTime(`value`: Output) {
        this.resolutionTime = value
    }

    /**
     * @param value The specific digest path of the image hosted in this `ProductionVariant` .
     */
    @JvmName("srtuadepjydxmclo")
    public suspend fun resolvedImage(`value`: Output) {
        this.resolvedImage = value
    }

    /**
     * @param value The image path you specified when you created the model.
     */
    @JvmName("rxdqfkyvdjdyvonu")
    public suspend fun specifiedImage(`value`: Output) {
        this.specifiedImage = value
    }

    /**
     * @param value The date and time when the image path for the model resolved to the `ResolvedImage`
     */
    @JvmName("qyejtjnldbnrpoop")
    public suspend fun resolutionTime(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resolutionTime = mapped
    }

    /**
     * @param value The specific digest path of the image hosted in this `ProductionVariant` .
     */
    @JvmName("iefmmtoirckdqtyf")
    public suspend fun resolvedImage(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resolvedImage = mapped
    }

    /**
     * @param value The image path you specified when you created the model.
     */
    @JvmName("sigdwlgelwrlxcsp")
    public suspend fun specifiedImage(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.specifiedImage = mapped
    }

    internal fun build(): InferenceComponentDeployedImageArgs = InferenceComponentDeployedImageArgs(
        resolutionTime = resolutionTime,
        resolvedImage = resolvedImage,
        specifiedImage = specifiedImage,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy