Interface CfnDomain.DefaultEbsStorageSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDomain.DefaultEbsStorageSettingsProperty.Jsii$Proxy
Enclosing class:
CfnDomain

@Stability(Stable) public static interface CfnDomain.DefaultEbsStorageSettingsProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 DefaultEbsStorageSettingsProperty defaultEbsStorageSettingsProperty = DefaultEbsStorageSettingsProperty.builder()
         .defaultEbsVolumeSizeInGb(123)
         .maximumEbsVolumeSizeInGb(123)
         .build();
 

See Also: