aws-cdk-lib.aws_emr.CfnCluster.EbsBlockDeviceConfigProperty

interface EbsBlockDeviceConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.EMR.CfnCluster.EbsBlockDeviceConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsemr#CfnCluster_EbsBlockDeviceConfigProperty
Javasoftware.amazon.awscdk.services.emr.CfnCluster.EbsBlockDeviceConfigProperty
Pythonaws_cdk.aws_emr.CfnCluster.EbsBlockDeviceConfigProperty
TypeScript aws-cdk-lib » aws_emr » CfnCluster » EbsBlockDeviceConfigProperty

EbsBlockDeviceConfig is a subproperty of the EbsConfiguration property type.

EbsBlockDeviceConfig defines the number and type of EBS volumes to associate with all EC2 instances in an EMR cluster.

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 ebsBlockDeviceConfigProperty: emr.CfnCluster.EbsBlockDeviceConfigProperty = {
  volumeSpecification: {
    sizeInGb: 123,
    volumeType: 'volumeType',

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

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

Properties

NameTypeDescription
volumeSpecificationIResolvable | VolumeSpecificationPropertyEBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are requested for the EBS volume attached to an Amazon EC2 instance in the cluster.
volumesPerInstance?numberNumber of EBS volumes with a specific volume configuration that are associated with every instance in the instance group.

volumeSpecification

Type: IResolvable | VolumeSpecificationProperty

EBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are requested for the EBS volume attached to an Amazon EC2 instance in the cluster.


volumesPerInstance?

Type: number (optional)

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