aws-cdk-lib.aws_stepfunctions_tasks.EmrCreateCluster.EbsBlockDeviceConfigProperty

interface EbsBlockDeviceConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.StepFunctions.Tasks.EmrCreateCluster.EbsBlockDeviceConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctionstasks#EmrCreateCluster_EbsBlockDeviceConfigProperty
Javasoftware.amazon.awscdk.services.stepfunctions.tasks.EmrCreateCluster.EbsBlockDeviceConfigProperty
Pythonaws_cdk.aws_stepfunctions_tasks.EmrCreateCluster.EbsBlockDeviceConfigProperty
TypeScript (source)aws-cdk-lib » aws_stepfunctions_tasks » EmrCreateCluster » EbsBlockDeviceConfigProperty

Configuration of requested EBS block device associated with the instance group with count of volumes that will be associated to every instance.

See also: https://docs.aws.amazon.com/emr/latest/APIReference/API_EbsBlockDeviceConfig.html

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
import { aws_stepfunctions_tasks as stepfunctions_tasks } from 'aws-cdk-lib';

declare const size: cdk.Size;
const ebsBlockDeviceConfigProperty: stepfunctions_tasks.EmrCreateCluster.EbsBlockDeviceConfigProperty = {
  volumeSpecification: {
    volumeSize: size,
    volumeType: stepfunctions_tasks.EmrCreateCluster.EbsBlockDeviceVolumeType.GP2,

    // the properties below are optional
    iops: 123,
  },

  // the properties below are optional
  volumesPerInstance: 123,
};

Properties

NameTypeDescription
volumeSpecificationVolumeSpecificationPropertyEBS volume specifications such as volume type, IOPS, and size (GiB) that will be requested for the EBS volume attached to an EC2 instance in the cluster.
volumesPerInstance?numberNumber of EBS volumes with a specific volume configuration that will be associated with every instance in the instance group.

volumeSpecification

Type: VolumeSpecificationProperty

EBS volume specifications such as volume type, IOPS, and size (GiB) that will be requested for the EBS volume attached to an EC2 instance in the cluster.


volumesPerInstance?

Type: number (optional, default: EMR selected default)

Number of EBS volumes with a specific volume configuration that will be associated with every instance in the instance group.