interface EbsConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.EMR.CfnCluster.EbsConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemr#CfnCluster_EbsConfigurationProperty | 
|  Java | software.amazon.awscdk.services.emr.CfnCluster.EbsConfigurationProperty | 
|  Python | aws_cdk.aws_emr.CfnCluster.EbsConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_emr»CfnCluster»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-lib';
const ebsConfigurationProperty: emr.CfnCluster.EbsConfigurationProperty = {
  ebsBlockDeviceConfigs: [{
    volumeSpecification: {
      sizeInGb: 123,
      volumeType: 'volumeType',
      // the properties below are optional
      iops: 123,
      throughput: 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.
The default is false. You should explicitly set this value to true to enable the Amazon EBS-optimized setting for an EC2 instance.
