Show / Hide Table of Contents

Class CfnInstanceFleetConfigPropsMixin.EbsConfigurationProperty

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

Inheritance
object
CfnInstanceFleetConfigPropsMixin.EbsConfigurationProperty
Implements
CfnInstanceFleetConfigPropsMixin.IEbsConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnInstanceFleetConfigPropsMixin.EbsConfigurationProperty : CfnInstanceFleetConfigPropsMixin.IEbsConfigurationProperty
Syntax (vb)
Public Class CfnInstanceFleetConfigPropsMixin.EbsConfigurationProperty Implements CfnInstanceFleetConfigPropsMixin.IEbsConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-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.Mixins.Preview.AWS.EMR.Mixins;

             var ebsConfigurationProperty = new EbsConfigurationProperty {
                 EbsBlockDeviceConfigs = new [] { new EbsBlockDeviceConfigProperty {
                     VolumeSpecification = new VolumeSpecificationProperty {
                         Iops = 123,
                         SizeInGb = 123,
                         Throughput = 123,
                         VolumeType = "volumeType"
                     },
                     VolumesPerInstance = 123
                 } },
                 EbsOptimized = false
             };

Synopsis

Constructors

EbsConfigurationProperty()

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

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()

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

public EbsConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-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.Mixins.Preview.AWS.EMR.Mixins;

             var ebsConfigurationProperty = new EbsConfigurationProperty {
                 EbsBlockDeviceConfigs = new [] { new EbsBlockDeviceConfigProperty {
                     VolumeSpecification = new VolumeSpecificationProperty {
                         Iops = 123,
                         SizeInGb = 123,
                         Throughput = 123,
                         VolumeType = "volumeType"
                     },
                     VolumesPerInstance = 123
                 } },
                 EbsOptimized = false
             };

Properties

EbsBlockDeviceConfigs

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

public object? EbsBlockDeviceConfigs { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-ebsconfiguration.html#cfn-emr-instancefleetconfig-ebsconfiguration-ebsblockdeviceconfigs

Type union: either IResolvable or (either IResolvable or CfnInstanceFleetConfigPropsMixin.IEbsBlockDeviceConfigProperty)[]

EbsOptimized

Indicates whether an Amazon EBS volume is EBS-optimized.

public object? EbsOptimized { get; set; }
Property Value

object

Remarks

The default is false. You should explicitly set this value to true to enable the Amazon EBS-optimized setting for an EC2 instance.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-ebsconfiguration.html#cfn-emr-instancefleetconfig-ebsconfiguration-ebsoptimized

Type union: either bool or IResolvable

Implements

CfnInstanceFleetConfigPropsMixin.IEbsConfigurationProperty
Back to top Generated by DocFX