interface DefaultEbsStorageSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnDomainPropsMixin.DefaultEbsStorageSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnDomainPropsMixin_DefaultEbsStorageSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnDomainPropsMixin.DefaultEbsStorageSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnDomainPropsMixin.DefaultEbsStorageSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnDomainPropsMixin » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const defaultEbsStorageSettingsProperty: sagemaker.CfnDomainPropsMixin.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