Show / Hide Table of Contents

Interface IEbsDeviceSnapshotOptions

Block device options for an EBS volume created from a snapshot.

Inherited Members
IEbsDeviceOptionsBase.DeleteOnTermination
IEbsDeviceOptionsBase.Iops
IEbsDeviceOptionsBase.Throughput
IEbsDeviceOptionsBase.VolumeType
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IEbsDeviceSnapshotOptions : IEbsDeviceOptionsBase
Syntax (vb)
Public Interface IEbsDeviceSnapshotOptions Inherits IEbsDeviceOptionsBase
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.EC2;

            var ebsDeviceSnapshotOptions = new EbsDeviceSnapshotOptions {
                DeleteOnTermination = false,
                Iops = 123,
                Throughput = 123,
                VolumeSize = 123,
                VolumeType = EbsDeviceVolumeType.STANDARD
            };

Synopsis

Properties

VolumeSize

The volume size, in Gibibytes (GiB).

Properties

VolumeSize

The volume size, in Gibibytes (GiB).

double? VolumeSize { get; }
Property Value

double?

Remarks

If you specify volumeSize, it must be equal or greater than the size of the snapshot.

Default: - The snapshot size

Back to top Generated by DocFX