All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.sagemaker.kotlin.outputs.SpaceSpaceSettingsCodeEditorAppSettings.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@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