Struct rusoto_appstream::Image[][src]

pub struct Image {
    pub applications: Option<Vec<Application>>,
    pub appstream_agent_version: Option<String>,
    pub arn: Option<String>,
    pub base_image_arn: Option<String>,
    pub created_time: Option<f64>,
    pub description: Option<String>,
    pub display_name: Option<String>,
    pub image_builder_supported: Option<bool>,
    pub name: String,
    pub platform: Option<String>,
    pub public_base_image_released_date: Option<f64>,
    pub state: Option<String>,
    pub state_change_reason: Option<ImageStateChangeReason>,
    pub visibility: Option<String>,
}

Describes an image.

Fields

The applications associated with the image.

The version of the AppStream 2.0 agent to use for instances that are launched from this image.

The ARN of the image.

The ARN of the image from which this image was created.

The time the image was created.

The description for display.

The image name for display.

Indicates whether an image builder can be launched from this image.

The name of the image.

The operating system platform of the image.

The release date of the public base image. For private images, this date is the release date of the base image from which the image was created.

The image starts in the PENDING state. If image creation succeeds, the state is AVAILABLE. If image creation fails, the state is FAILED.

The reason why the last state change occurred.

Indicates whether the image is public or private.

Trait Implementations

impl Default for Image
[src]

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

impl Debug for Image
[src]

Formats the value using the given formatter. Read more

impl Clone for Image
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Image
[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

impl Send for Image

impl Sync for Image