Struct rusoto_appstream::Image [] [src]

pub struct Image {
    pub applications: Option<Vec<Application>>,
    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>,
}

New streaming instances are booted from images. The image stores the application catalog and is connected to fleets.

Fields

The applications associated with an image.

The ARN for the image.

The source image ARN from which this image was created.

The time stamp when the image was created.

A meaningful description for the image.

The display name for the image.

Whether an image builder can be launched from this image.

The unique identifier for the image.

The operating system platform of the image.

The AWS 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, it moves to AVAILABLE. If image creation fails, it moves to FAILED.

The reason why the last state change occurred.

The visibility of an image to the user; images can be public or private.

Trait Implementations

impl Default for Image
[src]

[src]

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

impl Debug for Image
[src]

[src]

Formats the value using the given formatter.

impl Clone for Image
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more