AmiFromInstanceEbsBlockDevice

data class AmiFromInstanceEbsBlockDevice(val deleteOnTermination: Boolean? = null, val deviceName: String? = null, val encrypted: Boolean? = null, val iops: Int? = null, val outpostArn: String? = null, val snapshotId: String? = null, val throughput: Int? = null, val volumeSize: Int? = null, val volumeType: String? = null)

Constructors

Link copied to clipboard
constructor(deleteOnTermination: Boolean? = null, deviceName: String? = null, encrypted: Boolean? = null, iops: Int? = null, outpostArn: String? = null, snapshotId: String? = null, throughput: Int? = null, volumeSize: Int? = null, volumeType: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard
val deviceName: String? = null

Path at which the device is exposed to created instances.

Link copied to clipboard
val encrypted: Boolean? = null

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

Link copied to clipboard
val iops: Int? = null

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

Link copied to clipboard
val outpostArn: String? = null

ARN of the Outpost on which the snapshot is stored.

Link copied to clipboard
val snapshotId: String? = null

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.

Link copied to clipboard
val throughput: Int? = null

Throughput that the EBS volume supports, in MiB/s. Only valid for volume_type of gp3.

Link copied to clipboard
val volumeSize: Int? = null

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.

Link copied to clipboard
val volumeType: String? = null

Type of EBS volume to create. Can be standard, gp2, gp3, io1, io2, sc1 or st1 (Default: standard).