[][src]Struct rusoto_ec2::Image

pub struct Image {
    pub architecture: Option<String>,
    pub block_device_mappings: Option<Vec<BlockDeviceMapping>>,
    pub creation_date: Option<String>,
    pub description: Option<String>,
    pub ena_support: Option<bool>,
    pub hypervisor: Option<String>,
    pub image_id: Option<String>,
    pub image_location: Option<String>,
    pub image_owner_alias: Option<String>,
    pub image_type: Option<String>,
    pub kernel_id: Option<String>,
    pub name: Option<String>,
    pub owner_id: Option<String>,
    pub platform: Option<String>,
    pub product_codes: Option<Vec<ProductCode>>,
    pub public: Option<bool>,
    pub ramdisk_id: Option<String>,
    pub root_device_name: Option<String>,
    pub root_device_type: Option<String>,
    pub sriov_net_support: Option<String>,
    pub state: Option<String>,
    pub state_reason: Option<StateReason>,
    pub tags: Option<Vec<Tag>>,
    pub virtualization_type: Option<String>,
}

Describes an image.

Fields

The architecture of the image.

Any block device mapping entries.

The date and time the image was created.

The description of the AMI that was provided during image creation.

Specifies whether enhanced networking with ENA is enabled.

The hypervisor type of the image.

The ID of the AMI.

The location of the AMI.

The AWS account alias (for example, amazon, self) or the AWS account ID of the AMI owner.

The type of image.

The kernel associated with the image, if any. Only applicable for machine images.

The name of the AMI that was provided during image creation.

The AWS account ID of the image owner.

The value is Windows for Windows AMIs; otherwise blank.

Any product codes associated with the AMI.

Indicates whether the image has public launch permissions. The value is true if this image has public launch permissions or false if it has only implicit and explicit launch permissions.

The RAM disk associated with the image, if any. Only applicable for machine images.

The device name of the root device volume (for example, /dev/sda1).

The type of root device used by the AMI. The AMI can use an EBS volume or an instance store volume.

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

The current state of the AMI. If the state is available, the image is successfully registered and can be used to launch an instance.

The reason for the state change.

Any tags assigned to the image.

The type of virtualization of the AMI.

Trait Implementations

impl Default for Image
[src]

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

impl PartialEq<Image> for Image
[src]

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

This method tests for !=.

impl Clone for Image
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Image
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Image

impl Sync for Image

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Same for T

Should always be Self

impl<T> Erased for T