interface DefaultSpaceStorageSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnUserProfilePropsMixin.DefaultSpaceStorageSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnUserProfilePropsMixin_DefaultSpaceStorageSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnUserProfilePropsMixin.DefaultSpaceStorageSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnUserProfilePropsMixin.DefaultSpaceStorageSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnUserProfilePropsMixin » DefaultSpaceStorageSettingsProperty |
The default storage settings for a space.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const defaultSpaceStorageSettingsProperty: sagemaker.CfnUserProfilePropsMixin.DefaultSpaceStorageSettingsProperty = {
defaultEbsStorageSettings: {
defaultEbsVolumeSizeInGb: 123,
maximumEbsVolumeSizeInGb: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| default | IResolvable | Default | The default EBS storage settings for a space. |
defaultEbsStorageSettings?
Type:
IResolvable | Default
(optional)
The default EBS storage settings for a space.

.NET
Go
Java
Python
TypeScript