Interface CfnContainerRecipe.IEbsInstanceBlockDeviceSpecificationProperty
Amazon EBS-specific block device mapping specifications.
Namespace: Amazon.CDK.AWS.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IEbsInstanceBlockDeviceSpecificationProperty
Syntax (vb)
Public Interface IEbsInstanceBlockDeviceSpecificationProperty
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.ImageBuilder;
var ebsInstanceBlockDeviceSpecificationProperty = new EbsInstanceBlockDeviceSpecificationProperty {
DeleteOnTermination = false,
Encrypted = false,
Iops = 123,
KmsKeyId = "kmsKeyId",
SnapshotId = "snapshotId",
Throughput = 123,
VolumeSize = 123,
VolumeType = "volumeType"
};
Synopsis
Properties
DeleteOnTermination | Use to configure delete on termination of the associated device. |
Encrypted | Use to configure device encryption. |
Iops | Use to configure device IOPS. |
KmsKeyId | Use to configure the KMS key to use when encrypting the device. |
SnapshotId | The snapshot that defines the device contents. |
Throughput | For GP3 volumes only – The throughput in MiB/s that the volume supports. |
VolumeSize | Use to override the device's volume size. |
VolumeType | Use to override the device's volume type. |
Properties
DeleteOnTermination
Use to configure delete on termination of the associated device.
virtual object DeleteOnTermination { get; }
Property Value
System.Object
Remarks
Encrypted
Use to configure device encryption.
virtual object Encrypted { get; }
Property Value
System.Object
Remarks
Iops
Use to configure device IOPS.
virtual Nullable<double> Iops { get; }
Property Value
System.Nullable<System.Double>
Remarks
KmsKeyId
Use to configure the KMS key to use when encrypting the device.
virtual string KmsKeyId { get; }
Property Value
System.String
Remarks
SnapshotId
The snapshot that defines the device contents.
virtual string SnapshotId { get; }
Property Value
System.String
Remarks
Throughput
For GP3 volumes only – The throughput in MiB/s that the volume supports.
virtual Nullable<double> Throughput { get; }
Property Value
System.Nullable<System.Double>
Remarks
VolumeSize
Use to override the device's volume size.
virtual Nullable<double> VolumeSize { get; }
Property Value
System.Nullable<System.Double>
Remarks
VolumeType
Use to override the device's volume type.
virtual string VolumeType { get; }
Property Value
System.String