com.pulumi.aws.sagemaker.kotlin.inputs.UserProfileUserSettingsKernelGatewayAppSettingsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.sagemaker.kotlin.inputs
import com.pulumi.aws.sagemaker.inputs.UserProfileUserSettingsKernelGatewayAppSettingsArgs.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
/**
*
* @property customImages A list of custom SageMaker images that are configured to run as a KernelGateway app. see Custom Image below.
* @property defaultResourceSpec The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.
* @property lifecycleConfigArns The Amazon Resource Name (ARN) of the Lifecycle Configurations.
*/
public data class UserProfileUserSettingsKernelGatewayAppSettingsArgs(
public val customImages: Output>? = null,
public val defaultResourceSpec: Output? = null,
public val lifecycleConfigArns: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.sagemaker.inputs.UserProfileUserSettingsKernelGatewayAppSettingsArgs =
com.pulumi.aws.sagemaker.inputs.UserProfileUserSettingsKernelGatewayAppSettingsArgs.builder()
.customImages(
customImages?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.defaultResourceSpec(
defaultResourceSpec?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.lifecycleConfigArns(
lifecycleConfigArns?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
).build()
}
/**
* Builder for [UserProfileUserSettingsKernelGatewayAppSettingsArgs].
*/
@PulumiTagMarker
public class UserProfileUserSettingsKernelGatewayAppSettingsArgsBuilder internal constructor() {
private var customImages:
Output>? = null
private var defaultResourceSpec:
Output? = null
private var lifecycleConfigArns: Output>? = null
/**
* @param value A list of custom SageMaker images that are configured to run as a KernelGateway app. see Custom Image below.
*/
@JvmName("hkahpgnboijdupvp")
public suspend fun customImages(`value`: Output>) {
this.customImages = value
}
@JvmName("gxlvpeiisolrhibg")
public suspend fun customImages(vararg values: Output) {
this.customImages = Output.all(values.asList())
}
/**
* @param values A list of custom SageMaker images that are configured to run as a KernelGateway app. see Custom Image below.
*/
@JvmName("ramqpfvatnekyhon")
public suspend fun customImages(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy