interface DefaultSpaceStorageSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnDomainPropsMixin.DefaultSpaceStorageSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnDomainPropsMixin_DefaultSpaceStorageSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnDomainPropsMixin.DefaultSpaceStorageSettingsProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDomainPropsMixin.DefaultSpaceStorageSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnDomainPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const defaultSpaceStorageSettingsProperty: sagemaker_mixins.CfnDomainPropsMixin.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