
com.pulumi.awsnative.sagemaker.kotlin.outputs.UserProfileKernelGatewayAppSettings.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
* The kernel gateway app settings.
* @property customImages A list of custom SageMaker images that are configured to run as a KernelGateway app.
* @property defaultResourceSpec The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
*/
public data class UserProfileKernelGatewayAppSettings(
public val customImages: List? = null,
public val defaultResourceSpec: UserProfileResourceSpec? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.UserProfileKernelGatewayAppSettings): UserProfileKernelGatewayAppSettings = UserProfileKernelGatewayAppSettings(
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),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy