interface EbsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMR.CfnInstanceFleetConfig.EbsConfigurationProperty |
Java | software.amazon.awscdk.services.emr.CfnInstanceFleetConfig.EbsConfigurationProperty |
Python | aws_cdk.aws_emr.CfnInstanceFleetConfig.EbsConfigurationProperty |
TypeScript | @aws-cdk/aws-emr » CfnInstanceFleetConfig » EbsConfigurationProperty |
EbsConfiguration determines the EBS volumes to attach to EMR cluster instances.
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.CfnInstanceFleetConfig.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