@Stability(value=Stable)
public static interface EmrCreateCluster.EbsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 List<EmrCreateCluster.EbsBlockDeviceConfigProperty> |
getEbsBlockDeviceConfigs()
An array of Amazon EBS volume specifications attached to a cluster instance.
|
default Boolean |
getEbsOptimized()
Indicates whether an Amazon EBS volume is EBS-optimized.
|
@Stability(value=Stable) @Nullable default List<EmrCreateCluster.EbsBlockDeviceConfigProperty> getEbsBlockDeviceConfigs()
Default: - None
@Stability(value=Stable) @Nullable default Boolean getEbsOptimized()
Default: - EMR selected default
@Stability(value=Stable) static EmrCreateCluster.EbsConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.