![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.sagemaker.kotlin.outputs.UserProfileJupyterLabAppSettings.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* The JupyterLab app settings.
* @property appLifecycleManagement
* @property codeRepositories A list of CodeRepositories available for use with JupyterLab apps.
* @property customImages A list of custom images available for use for JupyterLab apps
* @property defaultResourceSpec The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterLab app.
* @property lifecycleConfigArns A list of LifecycleConfigArns available for use with JupyterLab apps.
*/
public data class UserProfileJupyterLabAppSettings(
public val appLifecycleManagement: UserProfileAppLifecycleManagement? = null,
public val codeRepositories: List? = null,
public val customImages: List? = null,
public val defaultResourceSpec: UserProfileResourceSpec? = null,
public val lifecycleConfigArns: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.UserProfileJupyterLabAppSettings): UserProfileJupyterLabAppSettings = UserProfileJupyterLabAppSettings(
appLifecycleManagement = javaType.appLifecycleManagement().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.sagemaker.kotlin.outputs.UserProfileAppLifecycleManagement.Companion.toKotlin(args0)
})
}).orElse(null),
codeRepositories = javaType.codeRepositories().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.sagemaker.kotlin.outputs.UserProfileCodeRepository.Companion.toKotlin(args0)
})
}),
customImages = javaType.customImages().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.sagemaker.kotlin.outputs.UserProfileCustomImage.Companion.toKotlin(args0)
})
}),
defaultResourceSpec = javaType.defaultResourceSpec().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.sagemaker.kotlin.outputs.UserProfileResourceSpec.Companion.toKotlin(args0)
})
}).orElse(null),
lifecycleConfigArns = javaType.lifecycleConfigArns().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy