interface EbsBlockDeviceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins.CfnInstanceGroupConfigPropsMixin.EbsBlockDeviceConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemr/mixins#CfnInstanceGroupConfigPropsMixin_EbsBlockDeviceConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.emr.mixins.CfnInstanceGroupConfigPropsMixin.EbsBlockDeviceConfigProperty |
Python | aws_cdk.mixins_preview.aws_emr.mixins.CfnInstanceGroupConfigPropsMixin.EbsBlockDeviceConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emr » mixins » CfnInstanceGroupConfigPropsMixin » EbsBlockDeviceConfigProperty |
Configuration of requested EBS block device associated with the instance group with count of volumes that are associated to every instance.
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 ebsBlockDeviceConfigProperty: emr_mixins.CfnInstanceGroupConfigPropsMixin.EbsBlockDeviceConfigProperty = {
volumeSpecification: {
iops: 123,
sizeInGb: 123,
throughput: 123,
volumeType: 'volumeType',
},
volumesPerInstance: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| volume | IResolvable | Volume | 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. |
| volumes | number | Number of EBS volumes with a specific volume configuration that are associated with every instance in the instance group. |
volumeSpecification?
Type:
IResolvable | Volume
(optional)
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.

.NET
Go
Java
Python
TypeScript