com.pulumi.aws.sagemaker.kotlin.outputs.UserProfileUserSettingsStudioWebPortalSettings.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.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property hiddenAppTypes The Applications supported in Studio that are hidden from the Studio left navigation pane.
* @property hiddenInstanceTypes The instance types you are hiding from the Studio user interface.
* @property hiddenMlTools The machine learning tools that are hidden from the Studio left navigation pane.
*/
public data class UserProfileUserSettingsStudioWebPortalSettings(
public val hiddenAppTypes: List? = null,
public val hiddenInstanceTypes: List? = null,
public val hiddenMlTools: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.sagemaker.outputs.UserProfileUserSettingsStudioWebPortalSettings): UserProfileUserSettingsStudioWebPortalSettings =
UserProfileUserSettingsStudioWebPortalSettings(
hiddenAppTypes = javaType.hiddenAppTypes().map({ args0 -> args0 }),
hiddenInstanceTypes = javaType.hiddenInstanceTypes().map({ args0 -> args0 }),
hiddenMlTools = javaType.hiddenMlTools().map({ args0 -> args0 }),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy