
com.pulumi.awsnative.sagemaker.kotlin.outputs.InferenceExperimentModelVariantConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Contains information about the deployment options of a model.
* @property infrastructureConfig The configuration for the infrastructure that the model will be deployed to.
* @property modelName The name of the Amazon SageMaker Model entity.
* @property variantName The name of the variant.
*/
public data class InferenceExperimentModelVariantConfig(
public val infrastructureConfig: InferenceExperimentModelInfrastructureConfig,
public val modelName: String,
public val variantName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.InferenceExperimentModelVariantConfig): InferenceExperimentModelVariantConfig = InferenceExperimentModelVariantConfig(
infrastructureConfig = javaType.infrastructureConfig().let({ args0 ->
com.pulumi.awsnative.sagemaker.kotlin.outputs.InferenceExperimentModelInfrastructureConfig.Companion.toKotlin(args0)
}),
modelName = javaType.modelName(),
variantName = javaType.variantName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy