Show / Hide Table of Contents

Class AmiCopyEbsBlockDevice

Inheritance
System.Object
AmiCopyEbsBlockDevice
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.Outputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class AmiCopyEbsBlockDevice

Fields

View Source

DeleteOnTermination

Boolean controlling whether the EBS volumes created to support each created instance will be deleted once that instance is terminated.

Declaration
public readonly bool? DeleteOnTermination
Field Value
Type Description
System.Nullable<System.Boolean>
View Source

DeviceName

The path at which the device is exposed to created instances.

Declaration
public readonly string DeviceName
Field Value
Type Description
System.String
View Source

Encrypted

Boolean controlling whether the created EBS volumes will be encrypted. Can't be used with snapshot_id.

Declaration
public readonly bool? Encrypted
Field Value
Type Description
System.Nullable<System.Boolean>
View Source

Iops

Number of I/O operations per second the created volumes will support.

Declaration
public readonly int? Iops
Field Value
Type Description
System.Nullable<System.Int32>
View Source

SnapshotId

The id of an EBS snapshot that will be used to initialize the created EBS volumes. If set, the volume_size attribute must be at least as large as the referenced snapshot.

Declaration
public readonly string SnapshotId
Field Value
Type Description
System.String
View Source

VolumeSize

The size of created volumes in GiB. If snapshot_id is set and volume_size is omitted then the volume will have the same size as the selected snapshot.

Declaration
public readonly int? VolumeSize
Field Value
Type Description
System.Nullable<System.Int32>
View Source

VolumeType

The type of EBS volume to create. Can be one of "standard" (the default), "io1" or "gp2".

Declaration
public readonly string VolumeType
Field Value
Type Description
System.String
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.