interface StudioWebPortalSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnUserProfilePropsMixin.StudioWebPortalSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnUserProfilePropsMixin_StudioWebPortalSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnUserProfilePropsMixin.StudioWebPortalSettingsProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnUserProfilePropsMixin.StudioWebPortalSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnUserProfilePropsMixin » StudioWebPortalSettingsProperty |
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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const studioWebPortalSettingsProperty: sagemaker_mixins.CfnUserProfilePropsMixin.StudioWebPortalSettingsProperty = {
hiddenAppTypes: ['hiddenAppTypes'],
hiddenInstanceTypes: ['hiddenInstanceTypes'],
hiddenMlTools: ['hiddenMlTools'],
hiddenSageMakerImageVersionAliases: [{
sageMakerImageName: 'sageMakerImageName',
versionAliases: ['versionAliases'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| hidden | string[] | The Applications supported in Studio that are hidden from the Studio left navigation pane. |
| hidden | string[] | The instance types you are hiding from the Studio user interface. |
| hidden | string[] | The machine learning tools that are hidden from the Studio left navigation pane. |
| hidden | IResolvable | (IResolvable | Hidden)[] | The version aliases you are hiding from the Studio user interface. |
hiddenAppTypes?
Type:
string[]
(optional)
The Applications supported in Studio that are hidden from the Studio left navigation pane.
hiddenInstanceTypes?
Type:
string[]
(optional)
The instance types you are hiding from the Studio user interface.
hiddenMlTools?
Type:
string[]
(optional)
The machine learning tools that are hidden from the Studio left navigation pane.
hiddenSageMakerImageVersionAliases?
Type:
IResolvable | (IResolvable | Hidden)[]
(optional)
The version aliases you are hiding from the Studio user interface.

.NET
Go
Java
Python
TypeScript