CustomizationsConfig / AppConfigItem | Ec2FirewallConfig / LaunchTemplateConfig / BlockDeviceMappingItem/ EbsItemConfig

The parameters for a block device for an EBS volume.

See

https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_LaunchTemplateEbsBlockDeviceRequest.html

Example

- deviceName: /dev/xvda
ebs:
deleteOnTermination: true
encrypted: true
kmsKeyId: key1

Hierarchy

  • EbsItemConfig

Implements

Constructors

Properties

deleteOnTermination: undefined | boolean = undefined

Indicates whether the EBS volume is deleted on instance termination.

encrypted: undefined | boolean = undefined

Indicates whether the EBS volume is encrypted. Encrypted volumes can only be attached to instances that support Amazon EBS encryption. If you are creating a volume from a snapshot, you can't specify an encryption value. If encrypted is true and kmsKeyId is not provided, then accelerator checks for default ebs encryption in the config.

iops: undefined | number = undefined

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting. This parameter is supported for io1, io2, and gp3 volumes only. This parameter is not supported for gp2, st1, sc1, or standard volumes.

kmsKeyId: undefined | string = undefined

The ARN of the symmetric AWS Key Management Service (AWS KMS) CMK used for encryption.

snapshotId: undefined | string = undefined

The ID of the snapshot.

throughput: undefined | number = undefined

The throughput to provision for a gp3 volume, with a maximum of 1,000 MiB/s. Valid Range: Minimum value of 125. Maximum value of 1000.

volumeSize: undefined | number = undefined

The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:

  • gp2 and gp3: 1-16,384
  • io1 and io2: 4-16,384
  • st1 and sc1: 125-16,384
  • standard: 1-1,024
volumeType: undefined | string = undefined

The volume type. Valid Values: standard | io1 | io2 | gp2 | sc1 | st1 | gp3

Generated using TypeDoc