Struct aws_sdk_imagebuilder::operation::send_workflow_step_action::SendWorkflowStepActionInput
source · #[non_exhaustive]pub struct SendWorkflowStepActionInput {
pub step_execution_id: Option<String>,
pub image_build_version_arn: Option<String>,
pub action: Option<WorkflowStepActionType>,
pub reason: Option<String>,
pub client_token: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.step_execution_id: Option<String>
Uniquely identifies the workflow step that sent the step action.
image_build_version_arn: Option<String>
The Amazon Resource Name (ARN) of the image build version to send action for.
action: Option<WorkflowStepActionType>
The action for the image creation process to take while a workflow WaitForAction
step waits for an asynchronous action to complete.
reason: Option<String>
The reason why this action is sent.
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 SendWorkflowStepActionInput
impl SendWorkflowStepActionInput
sourcepub fn step_execution_id(&self) -> Option<&str>
pub fn step_execution_id(&self) -> Option<&str>
Uniquely identifies the workflow step that sent the step action.
sourcepub fn image_build_version_arn(&self) -> Option<&str>
pub fn image_build_version_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the image build version to send action for.
sourcepub fn action(&self) -> Option<&WorkflowStepActionType>
pub fn action(&self) -> Option<&WorkflowStepActionType>
The action for the image creation process to take while a workflow WaitForAction
step waits for an asynchronous action to complete.
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 SendWorkflowStepActionInput
impl SendWorkflowStepActionInput
sourcepub fn builder() -> SendWorkflowStepActionInputBuilder
pub fn builder() -> SendWorkflowStepActionInputBuilder
Creates a new builder-style object to manufacture SendWorkflowStepActionInput
.
Trait Implementations§
source§impl Clone for SendWorkflowStepActionInput
impl Clone for SendWorkflowStepActionInput
source§fn clone(&self) -> SendWorkflowStepActionInput
fn clone(&self) -> SendWorkflowStepActionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SendWorkflowStepActionInput
impl Debug for SendWorkflowStepActionInput
impl StructuralPartialEq for SendWorkflowStepActionInput
Auto Trait Implementations§
impl Freeze for SendWorkflowStepActionInput
impl RefUnwindSafe for SendWorkflowStepActionInput
impl Send for SendWorkflowStepActionInput
impl Sync for SendWorkflowStepActionInput
impl Unpin for SendWorkflowStepActionInput
impl UnwindSafe for SendWorkflowStepActionInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more