interface SpaceStorageSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnSpacePropsMixin.SpaceStorageSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnSpacePropsMixin_SpaceStorageSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnSpacePropsMixin.SpaceStorageSettingsProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnSpacePropsMixin.SpaceStorageSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnSpacePropsMixin » SpaceStorageSettingsProperty |
The 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 spaceStorageSettingsProperty: sagemaker_mixins.CfnSpacePropsMixin.SpaceStorageSettingsProperty = {
ebsStorageSettings: {
ebsVolumeSizeInGb: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| ebs | IResolvable | Ebs | A collection of EBS storage settings for a space. |
ebsStorageSettings?
Type:
IResolvable | Ebs
(optional)
A collection of EBS storage settings for a space.

.NET
Go
Java
Python
TypeScript