com.pulumi.aws.sagemaker.kotlin.outputs.SpaceSpaceSettingsCodeEditorAppSettings.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.Suppress
/**
*
* @property appLifecycleManagement Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. See `app_lifecycle_management` 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.
*/
public data class SpaceSpaceSettingsCodeEditorAppSettings(
public val appLifecycleManagement: SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagement? =
null,
public val defaultResourceSpec: SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpec,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.sagemaker.outputs.SpaceSpaceSettingsCodeEditorAppSettings): SpaceSpaceSettingsCodeEditorAppSettings = SpaceSpaceSettingsCodeEditorAppSettings(
appLifecycleManagement = javaType.appLifecycleManagement().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.sagemaker.kotlin.outputs.SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagement.Companion.toKotlin(args0)
})
}).orElse(null),
defaultResourceSpec = javaType.defaultResourceSpec().let({ args0 ->
com.pulumi.aws.sagemaker.kotlin.outputs.SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpec.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy