Show / Hide Table of Contents

Class InstanceEbsBlockDeviceArgs

Inheritance
System.Object
InputArgs
ResourceArgs
InstanceEbsBlockDeviceArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Ec2.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class InstanceEbsBlockDeviceArgs : ResourceArgs

Constructors

View Source

InstanceEbsBlockDeviceArgs()

Declaration
public InstanceEbsBlockDeviceArgs()

Properties

View Source

DeleteOnTermination

Whether the volume should be destroyed on instance termination (Default: true).

Declaration
public Input<bool> DeleteOnTermination { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

DeviceName

The name of the device to mount.

Declaration
public Input<string> DeviceName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Encrypted

Enables EBS encryption on the volume (Default: false). Cannot be used with snapshot_id. Must be configured to perform drift detection.

Declaration
public Input<bool> Encrypted { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Iops

The amount of provisioned IOPS. This must be set with a volume_type of &quot;io1&quot;.

Declaration
public Input<int> Iops { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

KmsKeyId

Amazon Resource Name (ARN) of the KMS Key to use when encrypting the volume. Must be configured to perform drift detection.

Declaration
public Input<string> KmsKeyId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

SnapshotId

The Snapshot ID to mount.

Declaration
public Input<string> SnapshotId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

VolumeId

Declaration
public Input<string> VolumeId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

VolumeSize

The size of the volume in gibibytes (GiB).

Declaration
public Input<int> VolumeSize { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

VolumeType

The type of volume. Can be &quot;standard&quot;, &quot;gp2&quot;, or &quot;io1&quot;. (Default: &quot;gp2&quot;).

Declaration
public Input<string> VolumeType { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.