Interface CfnInstanceFleetConfig.IEbsBlockDeviceConfigProperty
EbsBlockDeviceConfig
is a subproperty of the EbsConfiguration
property type.
Namespace: Amazon.CDK.AWS.EMR
Assembly: Amazon.CDK.AWS.EMR.dll
Syntax (csharp)
public interface IEbsBlockDeviceConfigProperty
Syntax (vb)
Public Interface IEbsBlockDeviceConfigProperty
Remarks
EbsBlockDeviceConfig
defines the number and type of EBS volumes to associate with all EC2 instances in an EMR cluster.
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;
var 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, size (GiB) and throughput (MiB/s) that are requested for the EBS volume attached to an Amazon EC2 instance in the cluster. |
VolumesPerInstance | Number of EBS volumes with a specific volume configuration that are associated with every instance in the instance group. |
Properties
VolumeSpecification
EBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are requested for the EBS volume attached to an Amazon EC2 instance in the cluster.
object VolumeSpecification { get; }
Property Value
System.Object
Remarks
VolumesPerInstance
Number of EBS volumes with a specific volume configuration that are associated with every instance in the instance group.
virtual Nullable<double> VolumesPerInstance { get; }
Property Value
System.Nullable<System.Double>