com.pulumi.aws.sagemaker.kotlin.outputs.DomainDefaultSpaceSettingsKernelGatewayAppSettings.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.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property customImages A list of custom SageMaker images that are configured to run as a KernelGateway app. see `custom_image` Block 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` Block below.
* @property lifecycleConfigArns The Amazon Resource Name (ARN) of the Lifecycle Configurations.
*/
public data class DomainDefaultSpaceSettingsKernelGatewayAppSettings(
public val customImages: List? =
null,
public val defaultResourceSpec: DomainDefaultSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpec? = null,
public val lifecycleConfigArns: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.sagemaker.outputs.DomainDefaultSpaceSettingsKernelGatewayAppSettings): DomainDefaultSpaceSettingsKernelGatewayAppSettings =
DomainDefaultSpaceSettingsKernelGatewayAppSettings(
customImages = javaType.customImages().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.sagemaker.kotlin.outputs.DomainDefaultSpaceSettingsKernelGatewayAppSettingsCustomImage.Companion.toKotlin(args0)
})
}),
defaultResourceSpec = javaType.defaultResourceSpec().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.sagemaker.kotlin.outputs.DomainDefaultSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpec.Companion.toKotlin(args0)
})
}).orElse(null),
lifecycleConfigArns = javaType.lifecycleConfigArns().map({ args0 -> args0 }),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy