Class AmiFromInstanceEbsBlockDevice
Inheritance
Inherited Members
Namespace: Pulumi.Aws.Ec2.Outputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class AmiFromInstanceEbsBlockDevice
Fields
View SourceDeleteOnTermination
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> |
DeviceName
The path at which the device is exposed to created instances.
Declaration
public readonly string DeviceName
Field Value
| Type | Description |
|---|---|
| System.String |
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> |
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> |
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 |
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> |
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 |