Show / Hide Table of Contents

Class VolumeArgs

Inheritance
System.Object
InputArgs
ResourceArgs
VolumeArgs
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.Ebs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class VolumeArgs : ResourceArgs

Constructors

View Source

VolumeArgs()

Declaration
public VolumeArgs()

Properties

View Source

AvailabilityZone

The AZ where the EBS volume will exist.

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

Encrypted

If true, the disk will be encrypted.

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

Iops

The amount of IOPS to provision for the disk.

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

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>
View Source

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>
View Source

OutpostArn

The Amazon Resource Name (ARN) of the Outpost.

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

Size

The size of the drive in GiBs.

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

SnapshotId

A snapshot to base the EBS volume off of.

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

Tags

A map of tags to assign to the resource.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.