![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.sagemaker.kotlin.inputs.AppImageConfigContainerConfigArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.inputs
import com.pulumi.awsnative.sagemaker.inputs.AppImageConfigContainerConfigArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The container configuration for a SageMaker image.
* @property containerArguments A list of arguments to apply to the container.
* @property containerEntrypoint The custom entry point to use on container.
* @property containerEnvironmentVariables A list of variables to apply to the custom container.
*/
public data class AppImageConfigContainerConfigArgs(
public val containerArguments: Output>? = null,
public val containerEntrypoint: Output>? = null,
public val containerEnvironmentVariables: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.sagemaker.inputs.AppImageConfigContainerConfigArgs =
com.pulumi.awsnative.sagemaker.inputs.AppImageConfigContainerConfigArgs.builder()
.containerArguments(containerArguments?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.containerEntrypoint(containerEntrypoint?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.containerEnvironmentVariables(
containerEnvironmentVariables?.applyValue({ args0 ->
args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
).build()
}
/**
* Builder for [AppImageConfigContainerConfigArgs].
*/
@PulumiTagMarker
public class AppImageConfigContainerConfigArgsBuilder internal constructor() {
private var containerArguments: Output>? = null
private var containerEntrypoint: Output>? = null
private var containerEnvironmentVariables:
Output>? = null
/**
* @param value A list of arguments to apply to the container.
*/
@JvmName("hasgnckcewrtihbm")
public suspend fun containerArguments(`value`: Output>) {
this.containerArguments = value
}
@JvmName("tocwpvaqeejkotle")
public suspend fun containerArguments(vararg values: Output) {
this.containerArguments = Output.all(values.asList())
}
/**
* @param values A list of arguments to apply to the container.
*/
@JvmName("snnuglpmgfnawdtq")
public suspend fun containerArguments(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy