interface EbsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMR.CfnInstanceGroupConfig.EbsConfigurationProperty |
Java | software.amazon.awscdk.services.emr.CfnInstanceGroupConfig.EbsConfigurationProperty |
Python | aws_cdk.aws_emr.CfnInstanceGroupConfig.EbsConfigurationProperty |
TypeScript | @aws-cdk/aws-emr » CfnInstanceGroupConfig » EbsConfigurationProperty |
The Amazon EBS configuration of a cluster instance.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as emr from '@aws-cdk/aws-emr';
const ebsConfigurationProperty: emr.CfnInstanceGroupConfig.EbsConfigurationProperty = {
ebsBlockDeviceConfigs: [{
volumeSpecification: {
sizeInGb: 123,
volumeType: 'volumeType',
// the properties below are optional
iops: 123,
},
// the properties below are optional
volumesPerInstance: 123,
}],
ebsOptimized: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| ebs | IResolvable | IResolvable | Ebs[] | An array of Amazon EBS volume specifications attached to a cluster instance. |
| ebs | boolean | IResolvable | Indicates whether an Amazon EBS volume is EBS-optimized. |
ebsBlockDeviceConfigs?
Type:
IResolvable | IResolvable | Ebs[]
(optional)
An array of Amazon EBS volume specifications attached to a cluster instance.
ebsOptimized?
Type:
boolean | IResolvable
(optional)
Indicates whether an Amazon EBS volume is EBS-optimized.

.NET
Java
Python
TypeScript