Struct aws_sdk_imagebuilder::operation::start_image_pipeline_execution::StartImagePipelineExecutionInput
source · #[non_exhaustive]pub struct StartImagePipelineExecutionInput {
pub image_pipeline_arn: Option<String>,
pub client_token: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.image_pipeline_arn: Option<String>
The Amazon Resource Name (ARN) of the image pipeline that you want to manually invoke.
client_token: Option<String>
The idempotency token used to make this request idempotent.
Implementations§
source§impl StartImagePipelineExecutionInput
impl StartImagePipelineExecutionInput
sourcepub fn image_pipeline_arn(&self) -> Option<&str>
pub fn image_pipeline_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the image pipeline that you want to manually invoke.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
The idempotency token used to make this request idempotent.
source§impl StartImagePipelineExecutionInput
impl StartImagePipelineExecutionInput
sourcepub fn builder() -> StartImagePipelineExecutionInputBuilder
pub fn builder() -> StartImagePipelineExecutionInputBuilder
Creates a new builder-style object to manufacture StartImagePipelineExecutionInput
.
Trait Implementations§
source§impl Clone for StartImagePipelineExecutionInput
impl Clone for StartImagePipelineExecutionInput
source§fn clone(&self) -> StartImagePipelineExecutionInput
fn clone(&self) -> StartImagePipelineExecutionInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<StartImagePipelineExecutionInput> for StartImagePipelineExecutionInput
impl PartialEq<StartImagePipelineExecutionInput> for StartImagePipelineExecutionInput
source§fn eq(&self, other: &StartImagePipelineExecutionInput) -> bool
fn eq(&self, other: &StartImagePipelineExecutionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StartImagePipelineExecutionInput
Auto Trait Implementations§
impl RefUnwindSafe for StartImagePipelineExecutionInput
impl Send for StartImagePipelineExecutionInput
impl Sync for StartImagePipelineExecutionInput
impl Unpin for StartImagePipelineExecutionInput
impl UnwindSafe for StartImagePipelineExecutionInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more