#[non_exhaustive]
pub struct DescribeImageAttributeOutput { pub block_device_mappings: Option<Vec<BlockDeviceMapping>>, pub image_id: Option<String>, pub launch_permissions: Option<Vec<LaunchPermission>>, pub product_codes: Option<Vec<ProductCode>>, pub description: Option<AttributeValue>, pub kernel_id: Option<AttributeValue>, pub ramdisk_id: Option<AttributeValue>, pub sriov_net_support: Option<AttributeValue>, pub boot_mode: Option<AttributeValue>, pub tpm_support: Option<AttributeValue>, pub uefi_data: Option<AttributeValue>, pub last_launched_time: Option<AttributeValue>, }
Expand description

Describes an image attribute.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
block_device_mappings: Option<Vec<BlockDeviceMapping>>

The block device mapping entries.

image_id: Option<String>

The ID of the AMI.

launch_permissions: Option<Vec<LaunchPermission>>

The launch permissions.

product_codes: Option<Vec<ProductCode>>

The product codes.

description: Option<AttributeValue>

A description for the AMI.

kernel_id: Option<AttributeValue>

The kernel ID.

ramdisk_id: Option<AttributeValue>

The RAM disk ID.

sriov_net_support: Option<AttributeValue>

Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled.

boot_mode: Option<AttributeValue>

The boot mode.

tpm_support: Option<AttributeValue>

If the image is configured for NitroTPM support, the value is v2.0.

uefi_data: Option<AttributeValue>

Base64 representation of the non-volatile UEFI variable store. To retrieve the UEFI data, use the GetInstanceUefiData command. You can inspect and modify the UEFI data by using the python-uefivars tool on GitHub. For more information, see UEFI Secure Boot in the Amazon Elastic Compute Cloud User Guide.

last_launched_time: Option<AttributeValue>

The date and time, in ISO 8601 date-time format, when the AMI was last used to launch an EC2 instance. When the AMI is used, there is a 24-hour delay before that usage is reported.

lastLaunchedTime data is available starting April 2017.

Implementations

The block device mapping entries.

The ID of the AMI.

The launch permissions.

The product codes.

A description for the AMI.

The kernel ID.

The RAM disk ID.

Indicates whether enhanced networking with the Intel 82599 Virtual Function interface is enabled.

The boot mode.

If the image is configured for NitroTPM support, the value is v2.0.

Base64 representation of the non-volatile UEFI variable store. To retrieve the UEFI data, use the GetInstanceUefiData command. You can inspect and modify the UEFI data by using the python-uefivars tool on GitHub. For more information, see UEFI Secure Boot in the Amazon Elastic Compute Cloud User Guide.

The date and time, in ISO 8601 date-time format, when the AMI was last used to launch an EC2 instance. When the AMI is used, there is a 24-hour delay before that usage is reported.

lastLaunchedTime data is available starting April 2017.

Creates a new builder-style object to manufacture DescribeImageAttributeOutput.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more