Interface CfnUserProfile.DefaultSpaceStorageSettingsProperty

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

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

See Also: