Interface CfnInstanceFleetConfig.EbsBlockDeviceConfigProperty

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

@Stability(Stable) public static interface CfnInstanceFleetConfig.EbsBlockDeviceConfigProperty extends software.amazon.jsii.JsiiSerializable
EbsBlockDeviceConfig is a subproperty of the EbsConfiguration property type.

EbsBlockDeviceConfig defines the number and type of EBS volumes to associate with all EC2 instances in an EMR cluster.

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.*;
 EbsBlockDeviceConfigProperty ebsBlockDeviceConfigProperty = EbsBlockDeviceConfigProperty.builder()
         .volumeSpecification(VolumeSpecificationProperty.builder()
                 .sizeInGb(123)
                 .volumeType("volumeType")
                 // the properties below are optional
                 .iops(123)
                 .throughput(123)
                 .build())
         // the properties below are optional
         .volumesPerInstance(123)
         .build();
 

See Also: