// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`SendWorkflowStepAction`](crate::operation::send_workflow_step_action::builders::SendWorkflowStepActionFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`step_execution_id(impl Into<String>)`](crate::operation::send_workflow_step_action::builders::SendWorkflowStepActionFluentBuilder::step_execution_id) / [`set_step_execution_id(Option<String>)`](crate::operation::send_workflow_step_action::builders::SendWorkflowStepActionFluentBuilder::set_step_execution_id):<br>required: **true**<br><p>Uniquely identifies the workflow step that sent the step action.</p><br>
/// - [`image_build_version_arn(impl Into<String>)`](crate::operation::send_workflow_step_action::builders::SendWorkflowStepActionFluentBuilder::image_build_version_arn) / [`set_image_build_version_arn(Option<String>)`](crate::operation::send_workflow_step_action::builders::SendWorkflowStepActionFluentBuilder::set_image_build_version_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the image build version associated with the workflow step execution. This value must match the image that owns the waiting step. If the ARN does not correspond to the image running the workflow, then the request fails with a validation error.</p><br>
/// - [`action(WorkflowStepActionType)`](crate::operation::send_workflow_step_action::builders::SendWorkflowStepActionFluentBuilder::action) / [`set_action(Option<WorkflowStepActionType>)`](crate::operation::send_workflow_step_action::builders::SendWorkflowStepActionFluentBuilder::set_action):<br>required: **true**<br><p>The action to perform on the paused workflow step. The workflow step must be in a waiting state to accept an action. The request fails if the step has already timed out or been actioned.</p><br>
/// - [`reason(impl Into<String>)`](crate::operation::send_workflow_step_action::builders::SendWorkflowStepActionFluentBuilder::reason) / [`set_reason(Option<String>)`](crate::operation::send_workflow_step_action::builders::SendWorkflowStepActionFluentBuilder::set_reason):<br>required: **false**<br><p>The reason for the action. This value is stored with the step execution record and is accessible in subsequent workflow steps via step output references.</p><br>
/// - [`client_token(impl Into<String>)`](crate::operation::send_workflow_step_action::builders::SendWorkflowStepActionFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::send_workflow_step_action::builders::SendWorkflowStepActionFluentBuilder::set_client_token):<br>required: **true**<br><p>Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring idempotency</a> in the <i>Amazon EC2 API Reference</i>.</p><br>
/// - On success, responds with [`SendWorkflowStepActionOutput`](crate::operation::send_workflow_step_action::SendWorkflowStepActionOutput) with field(s):
/// - [`step_execution_id(Option<String>)`](crate::operation::send_workflow_step_action::SendWorkflowStepActionOutput::step_execution_id): <p>The workflow step that sent the step action.</p>
/// - [`image_build_version_arn(Option<String>)`](crate::operation::send_workflow_step_action::SendWorkflowStepActionOutput::image_build_version_arn): <p>The Amazon Resource Name (ARN) of the image build version that received the action request.</p>
/// - [`client_token(Option<String>)`](crate::operation::send_workflow_step_action::SendWorkflowStepActionOutput::client_token): <p>The client token that uniquely identifies the request.</p>
/// - On failure, responds with [`SdkError<SendWorkflowStepActionError>`](crate::operation::send_workflow_step_action::SendWorkflowStepActionError)
pub fn send_workflow_step_action(&self) -> crate::operation::send_workflow_step_action::builders::SendWorkflowStepActionFluentBuilder {
crate::operation::send_workflow_step_action::builders::SendWorkflowStepActionFluentBuilder::new(self.handle.clone())
}
}