![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.sagemaker.kotlin.inputs.ModelExplainabilityJobDefinitionModelExplainabilityAppSpecificationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.inputs
import com.pulumi.awsnative.sagemaker.inputs.ModelExplainabilityJobDefinitionModelExplainabilityAppSpecificationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Container image configuration object for the monitoring job.
* @property configUri The S3 URI to an analysis configuration file
* @property environment Sets the environment variables in the Docker container
* @property imageUri The container image to be run by the monitoring job.
*/
public data class ModelExplainabilityJobDefinitionModelExplainabilityAppSpecificationArgs(
public val configUri: Output,
public val environment: Output? = null,
public val imageUri: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.sagemaker.inputs.ModelExplainabilityJobDefinitionModelExplainabilityAppSpecificationArgs =
com.pulumi.awsnative.sagemaker.inputs.ModelExplainabilityJobDefinitionModelExplainabilityAppSpecificationArgs.builder()
.configUri(configUri.applyValue({ args0 -> args0 }))
.environment(environment?.applyValue({ args0 -> args0 }))
.imageUri(imageUri.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ModelExplainabilityJobDefinitionModelExplainabilityAppSpecificationArgs].
*/
@PulumiTagMarker
public class ModelExplainabilityJobDefinitionModelExplainabilityAppSpecificationArgsBuilder internal constructor() {
private var configUri: Output? = null
private var environment: Output? = null
private var imageUri: Output? = null
/**
* @param value The S3 URI to an analysis configuration file
*/
@JvmName("fraxspdhxbxkupbj")
public suspend fun configUri(`value`: Output) {
this.configUri = value
}
/**
* @param value Sets the environment variables in the Docker container
*/
@JvmName("bccqlcvinmkksiif")
public suspend fun environment(`value`: Output) {
this.environment = value
}
/**
* @param value The container image to be run by the monitoring job.
*/
@JvmName("mruastroyjiplnti")
public suspend fun imageUri(`value`: Output) {
this.imageUri = value
}
/**
* @param value The S3 URI to an analysis configuration file
*/
@JvmName("pbqwvkjlblsnjfgn")
public suspend fun configUri(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.configUri = mapped
}
/**
* @param value Sets the environment variables in the Docker container
*/
@JvmName("lsyuvloimgplpsax")
public suspend fun environment(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.environment = mapped
}
/**
* @param value The container image to be run by the monitoring job.
*/
@JvmName("rrbkmasvtsahviuq")
public suspend fun imageUri(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.imageUri = mapped
}
internal fun build(): ModelExplainabilityJobDefinitionModelExplainabilityAppSpecificationArgs =
ModelExplainabilityJobDefinitionModelExplainabilityAppSpecificationArgs(
configUri = configUri ?: throw PulumiNullFieldException("configUri"),
environment = environment,
imageUri = imageUri ?: throw PulumiNullFieldException("imageUri"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy