Struct rusoto_ec2::LaunchTemplateEbsBlockDevice[][src]

pub struct LaunchTemplateEbsBlockDevice {
    pub delete_on_termination: Option<bool>,
    pub encrypted: Option<bool>,
    pub iops: Option<i64>,
    pub kms_key_id: Option<String>,
    pub snapshot_id: Option<String>,
    pub volume_size: Option<i64>,
    pub volume_type: Option<String>,
}

Describes a block device for an EBS volume.

Fields

Indicates whether the EBS volume is deleted on instance termination.

Indicates whether the EBS volume is encrypted.

The number of I/O operations per second (IOPS) that the volume supports.

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

The ID of the snapshot.

The size of the volume, in GiB.

The volume type.

Trait Implementations

impl Default for LaunchTemplateEbsBlockDevice
[src]

Returns the "default value" for a type. Read more

impl Debug for LaunchTemplateEbsBlockDevice
[src]

Formats the value using the given formatter. Read more

impl Clone for LaunchTemplateEbsBlockDevice
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LaunchTemplateEbsBlockDevice
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations