Show / Hide Table of Contents

Class CfnCluster.EbsConfigurationProperty

EbsConfiguration is a subproperty of InstanceFleetConfig or InstanceGroupConfig .

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

EbsConfiguration determines the EBS volumes to attach to EMR cluster instances.

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

EbsConfigurationProperty ebsConfigurationProperty = new EbsConfigurationProperty {
    EbsBlockDeviceConfigs = new [] { new EbsBlockDeviceConfigProperty {
        VolumeSpecification = new VolumeSpecificationProperty {
            SizeInGb = 123,
            VolumeType = "volumeType",

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

        // the properties below are optional
        VolumesPerInstance = 123
    } },
    EbsOptimized = false
};

Synopsis

Constructors

EbsConfigurationProperty()

Properties

EbsBlockDeviceConfigs

An array of Amazon EBS volume specifications attached to a cluster instance.

EbsOptimized

Indicates whether an Amazon EBS volume is EBS-optimized.

Constructors

EbsConfigurationProperty()

public EbsConfigurationProperty()

Properties

EbsBlockDeviceConfigs

An array of Amazon EBS volume specifications attached to a cluster instance.

public object EbsBlockDeviceConfigs { get; set; }
Property Value

System.Object

Remarks

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

EbsOptimized

Indicates whether an Amazon EBS volume is EBS-optimized.

public object EbsOptimized { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnCluster.IEbsConfigurationProperty
Back to top Generated by DocFX