Interface CfnInstanceFleetConfig.VolumeSpecificationProperty

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

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

VolumeSecification determines the volume type, IOPS, and size (GiB) for EBS volumes attached to EC2 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.*;
 VolumeSpecificationProperty volumeSpecificationProperty = VolumeSpecificationProperty.builder()
         .sizeInGb(123)
         .volumeType("volumeType")
         // the properties below are optional
         .iops(123)
         .throughput(123)
         .build();
 

See Also: