Interface CfnInstanceGroupConfig.IEbsBlockDeviceConfigProperty
Configuration of requested EBS block device associated with the instance group with count of volumes that will be associated to every instance.
Namespace: Amazon.CDK.AWS.EMR
Assembly: Amazon.CDK.AWS.EMR.dll
Syntax (csharp)
public interface IEbsBlockDeviceConfigProperty
Syntax (vb)
Public Interface IEbsBlockDeviceConfigProperty
Remarks
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
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. |
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.
object VolumeSpecification { get; }
Property Value
System.Object
Remarks
VolumesPerInstance
Number of EBS volumes with a specific volume configuration that will be associated with every instance in the instance group.
virtual Nullable<double> VolumesPerInstance { get; }
Property Value
System.Nullable<System.Double>