Class InstanceRootBlockDeviceGetArgs
Inherited Members
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 InstanceRootBlockDeviceGetArgs : ResourceArgs
Constructors
View SourceInstanceRootBlockDeviceGetArgs()
Declaration
public InstanceRootBlockDeviceGetArgs()
Properties
View SourceDeleteOnTermination
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> |
DeviceName
The name of the device to mount.
Declaration
public Input<string> DeviceName { get; set; }
Property Value
Type | Description |
---|---|
Input<System.String> |
Encrypted
Enable volume encryption. (Default: false
). Must be configured to perform drift detection.
Declaration
public Input<bool> Encrypted { get; set; }
Property Value
Type | Description |
---|---|
Input<System.Boolean> |
Iops
The amount of provisioned
IOPS.
This is only valid for volume_type
of "io1"
, and must be specified if
using that type
Declaration
public Input<int> Iops { get; set; }
Property Value
Type | Description |
---|---|
Input<System.Int32> |
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> |
VolumeId
Declaration
public Input<string> VolumeId { get; set; }
Property Value
Type | Description |
---|---|
Input<System.String> |
VolumeSize
The size of the volume in gibibytes (GiB).
Declaration
public Input<int> VolumeSize { get; set; }
Property Value
Type | Description |
---|---|
Input<System.Int32> |
VolumeType
The type of volume. Can be "standard"
, "gp2"
, "io1"
, "sc1"
, or "st1"
. (Default: "standard"
).
Declaration
public Input<string> VolumeType { get; set; }
Property Value
Type | Description |
---|---|
Input<System.String> |