Interface EmrCreateCluster.EbsBlockDeviceConfigProperty

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

@Stability(Stable) public static interface EmrCreateCluster.EbsBlockDeviceConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration of requested EBS block device associated with the instance group with count of volumes that will be associated to every instance.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.stepfunctions.tasks.*;
 Size size;
 EbsBlockDeviceConfigProperty ebsBlockDeviceConfigProperty = EbsBlockDeviceConfigProperty.builder()
         .volumeSpecification(VolumeSpecificationProperty.builder()
                 .volumeSize(size)
                 .volumeType(EmrCreateCluster.getEbsBlockDeviceVolumeType().GP3)
                 // the properties below are optional
                 .iops(123)
                 .build())
         // the properties below are optional
         .volumesPerInstance(123)
         .build();
 

See Also: