Show / Hide Table of Contents

Class EmrCreateCluster.EbsBlockDeviceConfigProperty

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

Inheritance
System.Object
EmrCreateCluster.EbsBlockDeviceConfigProperty
Implements
EmrCreateCluster.IEbsBlockDeviceConfigProperty
Namespace: Amazon.CDK.AWS.StepFunctions.Tasks
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EbsBlockDeviceConfigProperty : Object, EmrCreateCluster.IEbsBlockDeviceConfigProperty
Syntax (vb)
Public Class EbsBlockDeviceConfigProperty
    Inherits Object
    Implements EmrCreateCluster.IEbsBlockDeviceConfigProperty
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
using Amazon.CDK.AWS.StepFunctions.Tasks;

Size size;

var ebsBlockDeviceConfigProperty = new EbsBlockDeviceConfigProperty {
    VolumeSpecification = new VolumeSpecificationProperty {
        VolumeSize = size,
        VolumeType = EmrCreateCluster.EbsBlockDeviceVolumeType.GP3,

        // the properties below are optional
        Iops = 123
    },

    // the properties below are optional
    VolumesPerInstance = 123
};

Synopsis

Constructors

EbsBlockDeviceConfigProperty()

Properties

VolumeSpecification

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

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

Constructors

EbsBlockDeviceConfigProperty()

public EbsBlockDeviceConfigProperty()

Properties

VolumeSpecification

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.

public EmrCreateCluster.IVolumeSpecificationProperty VolumeSpecification { get; set; }
Property Value

EmrCreateCluster.IVolumeSpecificationProperty

VolumesPerInstance

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

public Nullable<double> VolumesPerInstance { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Default: EMR selected default

Implements

EmrCreateCluster.IEbsBlockDeviceConfigProperty
Back to top Generated by DocFX