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

com.pulumi.aws.sagemaker.kotlin.outputs.UserProfileUserSettingsStudioWebPortalSettings.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.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