aws_sdk_transfer/client/send_workflow_step_state.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`SendWorkflowStepState`](crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`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>
/// - [`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>
/// - [`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>
/// - [`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>
/// - On success, responds with [`SendWorkflowStepStateOutput`](crate::operation::send_workflow_step_state::SendWorkflowStepStateOutput)
/// - On failure, responds with [`SdkError<SendWorkflowStepStateError>`](crate::operation::send_workflow_step_state::SendWorkflowStepStateError)
pub fn send_workflow_step_state(&self) -> crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder {
crate::operation::send_workflow_step_state::builders::SendWorkflowStepStateFluentBuilder::new(self.handle.clone())
}
}