aws_sdk_transfer/client/send_workflow_step_state.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`SendWorkflowStepState`](crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`workflow_id(impl Into<String>)`](crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder::workflow_id) / [`set_workflow_id(Option<String>)`](crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder::set_workflow_id):<br>required: **true**<br><p>A unique identifier for the workflow.</p><br>
7 /// - [`execution_id(impl Into<String>)`](crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder::execution_id) / [`set_execution_id(Option<String>)`](crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder::set_execution_id):<br>required: **true**<br><p>A unique identifier for the execution of a workflow.</p><br>
8 /// - [`token(impl Into<String>)`](crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder::token) / [`set_token(Option<String>)`](crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder::set_token):<br>required: **true**<br><p>Used to distinguish between multiple callbacks for multiple Lambda steps within the same execution.</p><br>
9 /// - [`status(CustomStepStatus)`](crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder::status) / [`set_status(Option<CustomStepStatus>)`](crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder::set_status):<br>required: **true**<br><p>Indicates whether the specified step succeeded or failed.</p><br>
10 /// - On success, responds with [`SendWorkflowStepStateOutput`](crate::operation::send_workflow_step_state::SendWorkflowStepStateOutput)
11 /// - On failure, responds with [`SdkError<SendWorkflowStepStateError>`](crate::operation::send_workflow_step_state::SendWorkflowStepStateError)
12 pub fn send_workflow_step_state(&self) -> crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder {
13 crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder::new(self.handle.clone())
14 }
15}