Class VolumeArgs
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.Ebs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class VolumeArgs : ResourceArgs
Constructors
View SourceVolumeArgs()
Declaration
public VolumeArgs()
Properties
View SourceAvailabilityZone
The AZ where the EBS volume will exist.
Declaration
public Input<string> AvailabilityZone { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Encrypted
If true, the disk will be encrypted.
Declaration
public Input<bool> Encrypted { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Iops
The amount of IOPS to provision for the disk.
Declaration
public Input<int> Iops { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
KmsKeyId
The ARN for the KMS encryption key. When specifying kms_key_id, encrypted needs to be set to true.
Declaration
public Input<string> KmsKeyId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
MultiAttachEnabled
Specifies whether to enable Amazon EBS Multi-Attach. Multi-Attach is supported exclusively on io1 volumes.
Declaration
public Input<bool> MultiAttachEnabled { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
OutpostArn
The Amazon Resource Name (ARN) of the Outpost.
Declaration
public Input<string> OutpostArn { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Size
The size of the drive in GiBs.
Declaration
public Input<int> Size { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
SnapshotId
A snapshot to base the EBS volume off of.
Declaration
public Input<string> SnapshotId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Tags
A map of tags to assign to the resource.
Declaration
public InputMap<object> Tags { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.Object> |
Type
The type of EBS volume. Can be "standard", "gp2", "io1", "sc1" or "st1" (Default: "gp2").
Declaration
public Input<string> Type { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |