
com.pulumi.awsnative.sagemaker.kotlin.inputs.UserProfileKernelGatewayAppSettingsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.inputs
import com.pulumi.awsnative.sagemaker.inputs.UserProfileKernelGatewayAppSettingsArgs.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.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The kernel gateway app settings.
* @property customImages A list of custom SageMaker images that are configured to run as a KernelGateway app.
* @property defaultResourceSpec The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
*/
public data class UserProfileKernelGatewayAppSettingsArgs(
public val customImages: Output>? = null,
public val defaultResourceSpec: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.sagemaker.inputs.UserProfileKernelGatewayAppSettingsArgs =
com.pulumi.awsnative.sagemaker.inputs.UserProfileKernelGatewayAppSettingsArgs.builder()
.customImages(
customImages?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.defaultResourceSpec(
defaultResourceSpec?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [UserProfileKernelGatewayAppSettingsArgs].
*/
@PulumiTagMarker
public class UserProfileKernelGatewayAppSettingsArgsBuilder internal constructor() {
private var customImages: Output>? = null
private var defaultResourceSpec: Output? = null
/**
* @param value A list of custom SageMaker images that are configured to run as a KernelGateway app.
*/
@JvmName("ihvqcamuangmnsjr")
public suspend fun customImages(`value`: Output>) {
this.customImages = value
}
@JvmName("ypkdfrcrweaqajuj")
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.
*/
@JvmName("vryyxdtfmsluwbqb")
public suspend fun customImages(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy