Show / Hide Table of Contents

Class CfnCluster.EbsBlockDeviceConfigProperty

EbsBlockDeviceConfig is a subproperty of the EbsConfiguration property type.

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

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-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.AWS.EMR;

EbsBlockDeviceConfigProperty ebsBlockDeviceConfigProperty = new EbsBlockDeviceConfigProperty {
    VolumeSpecification = new VolumeSpecificationProperty {
        SizeInGb = 123,
        VolumeType = "volumeType",

        // 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 object VolumeSpecification { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsblockdeviceconfig.html#cfn-elasticmapreduce-cluster-ebsblockdeviceconfig-volumespecification

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-ebsblockdeviceconfig.html#cfn-elasticmapreduce-cluster-ebsblockdeviceconfig-volumesperinstance

Implements

CfnCluster.IEbsBlockDeviceConfigProperty
Back to top Generated by DocFX