pub struct UpdateImagePipelineRequest {
pub client_token: String,
pub description: Option<String>,
pub distribution_configuration_arn: Option<String>,
pub enhanced_image_metadata_enabled: Option<bool>,
pub image_pipeline_arn: String,
pub image_recipe_arn: String,
pub image_tests_configuration: Option<ImageTestsConfiguration>,
pub infrastructure_configuration_arn: String,
pub schedule: Option<Schedule>,
pub status: Option<String>,
}
Fields§
§client_token: String
The idempotency token used to make this request idempotent.
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 updated 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_pipeline_arn: String
The Amazon Resource Name (ARN) of the image pipeline that you want to update.
image_recipe_arn: String
The Amazon Resource Name (ARN) of the image recipe that will be used to configure images updated 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 updated by this image pipeline.
schedule: Option<Schedule>
The schedule of the image pipeline.
status: Option<String>
The status of the image pipeline.
Trait Implementations§
Source§impl Clone for UpdateImagePipelineRequest
impl Clone for UpdateImagePipelineRequest
Source§fn clone(&self) -> UpdateImagePipelineRequest
fn clone(&self) -> UpdateImagePipelineRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more