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.services.stepfunctions.tasks.*; import software.amazon.awscdk.core.*; Size size; EbsBlockDeviceConfigProperty ebsBlockDeviceConfigProperty = EbsBlockDeviceConfigProperty.builder() .volumeSpecification(VolumeSpecificationProperty.builder() .volumeSize(size) .volumeType(EmrCreateCluster.getEbsBlockDeviceVolumeType().GP2) // the properties below are optional .iops(123) .build()) // the properties below are optional .volumesPerInstance(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forEmrCreateCluster.EbsBlockDeviceConfigProperty
static final class
An implementation forEmrCreateCluster.EbsBlockDeviceConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
EBS volume specifications such as volume type, IOPS, and size (GiB) that will be requested for the EBS volume attached to an EC2 instance in the cluster.default Number
Number of EBS volumes with a specific volume configuration that will be 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, and size (GiB) that will be requested for the EBS volume attached to an EC2 instance in the cluster. -
getVolumesPerInstance
Number of EBS volumes with a specific volume configuration that will be associated with every instance in the instance group.Default: EMR selected default
-
builder
-