interface EbsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins.CfnClusterPropsMixin.EbsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemr/mixins#CfnClusterPropsMixin_EbsConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.emr.mixins.CfnClusterPropsMixin.EbsConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_emr.mixins.CfnClusterPropsMixin.EbsConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emr » mixins » 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 { mixins as emr_mixins } from '@aws-cdk/mixins-preview/aws-emr';
const ebsConfigurationProperty: emr_mixins.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