Interface CfnCluster.EbsConfigurationProperty

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

@Stability(Stable) public static interface CfnCluster.EbsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
EbsConfiguration is a subproperty of InstanceFleetConfig or InstanceGroupConfig .

EbsConfiguration determines the EBS volumes to attach to EMR cluster instances.

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.emr.*;
 EbsConfigurationProperty ebsConfigurationProperty = EbsConfigurationProperty.builder()
         .ebsBlockDeviceConfigs(List.of(EbsBlockDeviceConfigProperty.builder()
                 .volumeSpecification(VolumeSpecificationProperty.builder()
                         .sizeInGb(123)
                         .volumeType("volumeType")
                         // the properties below are optional
                         .iops(123)
                         .build())
                 // the properties below are optional
                 .volumesPerInstance(123)
                 .build()))
         .ebsOptimized(false)
         .build();