interface DefaultEbsStorageSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnUserProfilePropsMixin.DefaultEbsStorageSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnUserProfilePropsMixin_DefaultEbsStorageSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnUserProfilePropsMixin.DefaultEbsStorageSettingsProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnUserProfilePropsMixin.DefaultEbsStorageSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnUserProfilePropsMixin » DefaultEbsStorageSettingsProperty |
A collection of default EBS storage settings that apply to spaces created within a domain or user profile.
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 defaultEbsStorageSettingsProperty: sagemaker_mixins.CfnUserProfilePropsMixin.DefaultEbsStorageSettingsProperty = {
defaultEbsVolumeSizeInGb: 123,
maximumEbsVolumeSizeInGb: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| default | number | The default size of the EBS storage volume for a space. |
| maximum | number | The maximum size of the EBS storage volume for a space. |
defaultEbsVolumeSizeInGb?
Type:
number
(optional)
The default size of the EBS storage volume for a space.
maximumEbsVolumeSizeInGb?
Type:
number
(optional)
The maximum size of the EBS storage volume for a space.

.NET
Go
Java
Python
TypeScript