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
source§impl PartialEq for SendWorkflowStepActionInput
impl PartialEq for SendWorkflowStepActionInput
source§fn eq(&self, other: &SendWorkflowStepActionInput) -> bool
fn eq(&self, other: &SendWorkflowStepActionInput) -> bool
self
and other
values to be equal, and is used
by ==
.