Interface CfnInstanceFleetConfigPropsMixin.EbsBlockDeviceConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInstanceFleetConfigPropsMixin.EbsBlockDeviceConfigProperty.Jsii$Proxy
- Enclosing class:
CfnInstanceFleetConfigPropsMixin
@Stability(Stable)
public static interface CfnInstanceFleetConfigPropsMixin.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.cfnpropertymixins.services.emr.*;
EbsBlockDeviceConfigProperty ebsBlockDeviceConfigProperty = EbsBlockDeviceConfigProperty.builder()
.volumeSpecification(VolumeSpecificationProperty.builder()
.iops(123)
.sizeInGb(123)
.throughput(123)
.volumeType("volumeType")
.build())
.volumesPerInstance(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnInstanceFleetConfigPropsMixin.EbsBlockDeviceConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectEBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are requested for the EBS volume attached to an Amazon EC2 instance in the cluster.default NumberNumber of EBS volumes with a specific volume configuration that are associated with every instance in the instance group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVolumeSpecification
EBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are requested for the EBS volume attached to an Amazon EC2 instance in the cluster.Returns union: either
IResolvableorCfnInstanceFleetConfigPropsMixin.VolumeSpecificationProperty- See Also:
-
getVolumesPerInstance
Number of EBS volumes with a specific volume configuration that are associated with every instance in the instance group.- See Also:
-
builder
@Stability(Stable) static CfnInstanceFleetConfigPropsMixin.EbsBlockDeviceConfigProperty.Builder builder()
-