public static interface EmrCreateCluster.EbsConfigurationProperty
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; EbsConfigurationProperty ebsConfigurationProperty = EbsConfigurationProperty.builder() .ebsBlockDeviceConfigs(List.of(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())) .ebsOptimized(false) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
EmrCreateCluster.EbsConfigurationProperty.Builder
A builder for
EmrCreateCluster.EbsConfigurationProperty |
static class |
EmrCreateCluster.EbsConfigurationProperty.Jsii$Proxy
An implementation for
EmrCreateCluster.EbsConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static EmrCreateCluster.EbsConfigurationProperty.Builder |
builder() |
default java.util.List<EmrCreateCluster.EbsBlockDeviceConfigProperty> |
getEbsBlockDeviceConfigs()
An array of Amazon EBS volume specifications attached to a cluster instance.
|
default java.lang.Boolean |
getEbsOptimized()
Indicates whether an Amazon EBS volume is EBS-optimized.
|
default java.util.List<EmrCreateCluster.EbsBlockDeviceConfigProperty> getEbsBlockDeviceConfigs()
Default: - None
default java.lang.Boolean getEbsOptimized()
Default: - EMR selected default
static EmrCreateCluster.EbsConfigurationProperty.Builder builder()