interface EbsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.StepFunctions.Tasks.EmrCreateCluster.EbsConfigurationProperty |
Java | software.amazon.awscdk.services.stepfunctions.tasks.EmrCreateCluster.EbsConfigurationProperty |
Python | aws_cdk.aws_stepfunctions_tasks.EmrCreateCluster.EbsConfigurationProperty |
TypeScript (source) | @aws-cdk/aws-stepfunctions-tasks » EmrCreateCluster » EbsConfigurationProperty |
The Amazon EBS configuration of a cluster instance.
See also: https://docs.aws.amazon.com/emr/latest/APIReference/API_EbsConfiguration.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as stepfunctions_tasks from '@aws-cdk/aws-stepfunctions-tasks';
import * as cdk from '@aws-cdk/core';
declare const size: cdk.Size;
const ebsConfigurationProperty: stepfunctions_tasks.EmrCreateCluster.EbsConfigurationProperty = {
ebsBlockDeviceConfigs: [{
volumeSpecification: {
volumeSize: size,
volumeType: stepfunctions_tasks.EmrCreateCluster.EbsBlockDeviceVolumeType.GP2,
// the properties below are optional
iops: 123,
},
// the properties below are optional
volumesPerInstance: 123,
}],
ebsOptimized: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| ebs | Ebs[] | An array of Amazon EBS volume specifications attached to a cluster instance. |
| ebs | boolean | Indicates whether an Amazon EBS volume is EBS-optimized. |
ebsBlockDeviceConfigs?
Type:
Ebs[]
(optional, default: None)
An array of Amazon EBS volume specifications attached to a cluster instance.
ebsOptimized?
Type:
boolean
(optional, default: EMR selected default)
Indicates whether an Amazon EBS volume is EBS-optimized.

.NET
Java
Python
TypeScript (