@Stability(value=Stable)
public static interface CfnInstanceGroupConfig.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.emr.*;
EbsConfigurationProperty ebsConfigurationProperty = EbsConfigurationProperty.builder()
.ebsBlockDeviceConfigs(List.of(EbsBlockDeviceConfigProperty.builder()
.volumeSpecification(VolumeSpecificationProperty.builder()
.sizeInGb(123)
.volumeType("volumeType")
// 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 |
CfnInstanceGroupConfig.EbsConfigurationProperty.Builder
A builder for
CfnInstanceGroupConfig.EbsConfigurationProperty |
static class |
CfnInstanceGroupConfig.EbsConfigurationProperty.Jsii$Proxy
An implementation for
CfnInstanceGroupConfig.EbsConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnInstanceGroupConfig.EbsConfigurationProperty.Builder |
builder() |
default Object |
getEbsBlockDeviceConfigs()
An array of Amazon EBS volume specifications attached to a cluster instance.
|
default Object |
getEbsOptimized()
Indicates whether an Amazon EBS volume is EBS-optimized.
|
@Stability(value=Stable) @Nullable default Object getEbsBlockDeviceConfigs()
@Stability(value=Stable) @Nullable default Object getEbsOptimized()
@Stability(value=Stable) static CfnInstanceGroupConfig.EbsConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.