
com.pulumi.awsnative.sagemaker.kotlin.outputs.UserProfileJupyterServerAppSettings.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.outputs
import kotlin.Suppress
/**
* The JupyterServer app settings.
* @property defaultResourceSpec The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterServer app.
*/
public data class UserProfileJupyterServerAppSettings(
public val defaultResourceSpec: UserProfileResourceSpec? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.UserProfileJupyterServerAppSettings): UserProfileJupyterServerAppSettings = UserProfileJupyterServerAppSettings(
defaultResourceSpec = javaType.defaultResourceSpec().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.sagemaker.kotlin.outputs.UserProfileResourceSpec.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy