interface EbsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EMR.CfnClusterPropsMixin.EbsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsemr#CfnClusterPropsMixin_EbsConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.emr.CfnClusterPropsMixin.EbsConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_emr.CfnClusterPropsMixin.EbsConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_emr » CfnClusterPropsMixin » EbsConfigurationProperty |
EbsConfiguration is a subproperty of InstanceFleetConfig or InstanceGroupConfig .
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 { aws_emr as emr } from '@aws-cdk/cfn-property-mixins';
const ebsConfigurationProperty: emr.CfnClusterPropsMixin.EbsConfigurationProperty = {
ebsBlockDeviceConfigs: [{
volumeSpecification: {
iops: 123,
sizeInGb: 123,
throughput: 123,
volumeType: 'volumeType',
},
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.
The default is false. You should explicitly set this value to true to enable the Amazon EBS-optimized setting for an EC2 instance.

.NET
Go
Java
Python
TypeScript