[][src]Struct rusoto_imagebuilder::CreateContainerRecipeRequest

pub struct CreateContainerRecipeRequest {
    pub client_token: String,
    pub components: Vec<ComponentConfiguration>,
    pub container_type: String,
    pub description: Option<String>,
    pub dockerfile_template_data: String,
    pub dockerfile_template_uri: Option<String>,
    pub image_os_version_override: Option<String>,
    pub kms_key_id: Option<String>,
    pub name: String,
    pub parent_image: String,
    pub platform_override: Option<String>,
    pub semantic_version: String,
    pub tags: Option<HashMap<String, String>>,
    pub target_repository: TargetContainerRepository,
    pub working_directory: Option<String>,
}

Fields

client_token: String

The client token used to make this request idempotent.

components: Vec<ComponentConfiguration>

Components for build and test that are included in the container recipe.

container_type: String

The type of container to create.

description: Option<String>

The description of the container recipe.

dockerfile_template_data: String

The Dockerfile template used to build your image as an inline data blob.

dockerfile_template_uri: Option<String>

The S3 URI for the Dockerfile that will be used to build your container image.

image_os_version_override: Option<String>

Specifies the operating system version for the source image.

kms_key_id: Option<String>

Identifies which KMS key is used to encrypt the container image.

name: String

The name of the container recipe.

parent_image: String

The source image for the container recipe.

platform_override: Option<String>

Specifies the operating system platform when you use a custom source image.

semantic_version: String

The semantic version of the container recipe (<major>.<minor>.<patch>).

tags: Option<HashMap<String, String>>

Tags that are attached to the container recipe.

target_repository: TargetContainerRepository

The destination repository for the container image.

working_directory: Option<String>

The working directory for use during build and test workflows.

Trait Implementations

impl Clone for CreateContainerRecipeRequest[src]

impl Debug for CreateContainerRecipeRequest[src]

impl Default for CreateContainerRecipeRequest[src]

impl PartialEq<CreateContainerRecipeRequest> for CreateContainerRecipeRequest[src]

impl Serialize for CreateContainerRecipeRequest[src]

impl StructuralPartialEq for CreateContainerRecipeRequest[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> 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.