[][src]Struct rusoto_imagebuilder::CreateImagePipelineRequest

pub struct CreateImagePipelineRequest {
    pub client_token: String,
    pub container_recipe_arn: Option<String>,
    pub description: Option<String>,
    pub distribution_configuration_arn: Option<String>,
    pub enhanced_image_metadata_enabled: Option<bool>,
    pub image_recipe_arn: Option<String>,
    pub image_tests_configuration: Option<ImageTestsConfiguration>,
    pub infrastructure_configuration_arn: String,
    pub name: String,
    pub schedule: Option<Schedule>,
    pub status: Option<String>,
    pub tags: Option<HashMap<String, String>>,
}

Fields

client_token: String

The idempotency token used to make this request idempotent.

container_recipe_arn: Option<String>

The Amazon Resource Name (ARN) of the container recipe that is used to configure images created by this container pipeline.

description: Option<String>

The description of the image pipeline.

distribution_configuration_arn: Option<String>

The Amazon Resource Name (ARN) of the distribution configuration that will be used to configure and distribute images created by this image pipeline.

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_arn: Option<String>

The Amazon Resource Name (ARN) of the image recipe that will be used to configure images created by this image pipeline.

image_tests_configuration: Option<ImageTestsConfiguration>

The image test configuration of the image pipeline.

infrastructure_configuration_arn: String

The Amazon Resource Name (ARN) of the infrastructure configuration that will be used to build images created by this image pipeline.

name: String

The name of the image pipeline.

schedule: Option<Schedule>

The schedule of the image pipeline.

status: Option<String>

The status of the image pipeline.

tags: Option<HashMap<String, String>>

The tags of the image pipeline.

Trait Implementations

impl Clone for CreateImagePipelineRequest[src]

impl Debug for CreateImagePipelineRequest[src]

impl Default for CreateImagePipelineRequest[src]

impl PartialEq<CreateImagePipelineRequest> for CreateImagePipelineRequest[src]

impl Serialize for CreateImagePipelineRequest[src]

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