[][src]Struct rusoto_imagebuilder::ImageRecipe

pub struct ImageRecipe {
    pub arn: Option<String>,
    pub block_device_mappings: Option<Vec<InstanceBlockDeviceMapping>>,
    pub components: Option<Vec<ComponentConfiguration>>,
    pub date_created: Option<String>,
    pub description: Option<String>,
    pub name: Option<String>,
    pub owner: Option<String>,
    pub parent_image: Option<String>,
    pub platform: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub type_: Option<String>,
    pub version: Option<String>,
    pub working_directory: Option<String>,
}

An image recipe.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the image recipe.

block_device_mappings: Option<Vec<InstanceBlockDeviceMapping>>

The block device mappings to apply when creating images from this recipe.

components: Option<Vec<ComponentConfiguration>>

The components of the image recipe.

date_created: Option<String>

The date on which this image recipe was created.

description: Option<String>

The description of the image recipe.

name: Option<String>

The name of the image recipe.

owner: Option<String>

The owner of the image recipe.

parent_image: Option<String>

The parent image of the image recipe.

platform: Option<String>

The platform of the image recipe.

tags: Option<HashMap<String, String>>

The tags of the image recipe.

type_: Option<String>

Specifies which type of image is created by the recipe - an AMI or a container image.

version: Option<String>

The version of the image recipe.

working_directory: Option<String>

The working directory to be used during build and test workflows.

Trait Implementations

impl Clone for ImageRecipe[src]

impl Debug for ImageRecipe[src]

impl Default for ImageRecipe[src]

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

impl PartialEq<ImageRecipe> for ImageRecipe[src]

impl StructuralPartialEq for ImageRecipe[src]

Auto Trait Implementations

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> Instrument 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> 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.