Interface CfnUserProfile.StudioWebPortalSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserProfile.StudioWebPortalSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnUserProfile
@Stability(Stable)
public static interface CfnUserProfile.StudioWebPortalSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Studio settings.
If these settings are applied on a user level, they take priority over the settings applied on a domain level.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.sagemaker.*; StudioWebPortalSettingsProperty studioWebPortalSettingsProperty = StudioWebPortalSettingsProperty.builder() .hiddenAppTypes(List.of("hiddenAppTypes")) .hiddenInstanceTypes(List.of("hiddenInstanceTypes")) .hiddenMlTools(List.of("hiddenMlTools")) .hiddenSageMakerImageVersionAliases(List.of(HiddenSageMakerImageProperty.builder() .sageMakerImageName("sageMakerImageName") .versionAliases(List.of("versionAliases")) .build())) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUserProfile.StudioWebPortalSettingsProperty
static final class
An implementation forCfnUserProfile.StudioWebPortalSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The Applications supported in Studio that are hidden from the Studio left navigation pane.The instance types you are hiding from the Studio user interface.The machine learning tools that are hidden from the Studio left navigation pane.default Object
The version aliases you are hiding from the Studio user interface.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHiddenAppTypes
The Applications supported in Studio that are hidden from the Studio left navigation pane.- See Also:
-
getHiddenInstanceTypes
-
getHiddenMlTools
-
getHiddenSageMakerImageVersionAliases
The version aliases you are hiding from the Studio user interface.- See Also:
-
builder
-