[][src]Struct rusoto_imagebuilder::Image

pub struct Image {
    pub arn: Option<String>,
    pub date_created: Option<String>,
    pub distribution_configuration: Option<DistributionConfiguration>,
    pub enhanced_image_metadata_enabled: Option<bool>,
    pub image_recipe: Option<ImageRecipe>,
    pub image_tests_configuration: Option<ImageTestsConfiguration>,
    pub infrastructure_configuration: Option<InfrastructureConfiguration>,
    pub name: Option<String>,
    pub os_version: Option<String>,
    pub output_resources: Option<OutputResources>,
    pub platform: Option<String>,
    pub source_pipeline_arn: Option<String>,
    pub source_pipeline_name: Option<String>,
    pub state: Option<ImageState>,
    pub tags: Option<HashMap<String, String>>,
    pub version: Option<String>,
}

An image build version.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the image.

date_created: Option<String>

The date on which this image was created.

distribution_configuration: Option<DistributionConfiguration>

The distribution configuration used when creating this image.

enhanced_image_metadata_enabled: Option<bool>

Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.

image_recipe: Option<ImageRecipe>

The image recipe used when creating the image.

image_tests_configuration: Option<ImageTestsConfiguration>

The image tests configuration used when creating this image.

infrastructure_configuration: Option<InfrastructureConfiguration>

The infrastructure used when creating this image.

name: Option<String>

The name of the image.

os_version: Option<String>

The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.

output_resources: Option<OutputResources>

The output resources produced when creating this image.

platform: Option<String>

The platform of the image.

source_pipeline_arn: Option<String>

The Amazon Resource Name (ARN) of the image pipeline that created this image.

source_pipeline_name: Option<String>

The name of the image pipeline that created this image.

state: Option<ImageState>

The state of the image.

tags: Option<HashMap<String, String>>

The tags of the image.

version: Option<String>

The semantic version of the image.

Trait Implementations

impl Clone for Image[src]

impl Debug for Image[src]

impl Default for Image[src]

impl<'de> Deserialize<'de> for Image[src]

impl PartialEq<Image> for Image[src]

impl StructuralPartialEq for Image[src]

Auto Trait Implementations

impl RefUnwindSafe for Image

impl Send for Image

impl Sync for Image

impl Unpin for Image

impl UnwindSafe for Image

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.