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>
Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring idempotency in the Amazon EC2 API Reference.
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>
Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring idempotency in the Amazon EC2 API Reference.
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 for StartImagePipelineExecutionInput
impl PartialEq 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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.