Class LaunchTemplateBlockDeviceMappingEbsGetArgs
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 LaunchTemplateBlockDeviceMappingEbsGetArgs : ResourceArgs
Constructors
View SourceLaunchTemplateBlockDeviceMappingEbsGetArgs()
Declaration
public LaunchTemplateBlockDeviceMappingEbsGetArgs()
Properties
View SourceDeleteOnTermination
Whether the volume should be destroyed on instance termination (Default: false). See Preserving Amazon EBS Volumes on Instance Termination for more information.
Declaration
public Input<string> DeleteOnTermination { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Encrypted
Enables EBS encryption
on the volume (Default: false). Cannot be used with snapshot_id.
Declaration
public Input<string> Encrypted { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Iops
The amount of provisioned
IOPS.
This must be set with a volume_type of "io1".
Declaration
public Input<int> Iops { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
KmsKeyId
The ARN of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use when creating the encrypted volume.
encrypted must be set to true when this is set.
Declaration
public Input<string> KmsKeyId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SnapshotId
The Snapshot ID to mount.
Declaration
public Input<string> SnapshotId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
VolumeSize
The size of the volume in gigabytes.
Declaration
public Input<int> VolumeSize { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
VolumeType
The type of volume. Can be "standard", "gp2", or "io1". (Default: "standard").
Declaration
public Input<string> VolumeType { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |