aws_sdk_migrationhuborchestrator/client/retry_workflow_step.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 [`RetryWorkflowStep`](crate::operation::retry_workflow_step::builders::RetryWorkflowStepFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`workflow_id(impl Into<String>)`](crate::operation::retry_workflow_step::builders::RetryWorkflowStepFluentBuilder::workflow_id) / [`set_workflow_id(Option<String>)`](crate::operation::retry_workflow_step::builders::RetryWorkflowStepFluentBuilder::set_workflow_id):<br>required: **true**<br><p>The ID of the migration workflow.</p><br>
7 /// - [`step_group_id(impl Into<String>)`](crate::operation::retry_workflow_step::builders::RetryWorkflowStepFluentBuilder::step_group_id) / [`set_step_group_id(Option<String>)`](crate::operation::retry_workflow_step::builders::RetryWorkflowStepFluentBuilder::set_step_group_id):<br>required: **true**<br><p>The ID of the step group.</p><br>
8 /// - [`id(impl Into<String>)`](crate::operation::retry_workflow_step::builders::RetryWorkflowStepFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::retry_workflow_step::builders::RetryWorkflowStepFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the step.</p><br>
9 /// - On success, responds with [`RetryWorkflowStepOutput`](crate::operation::retry_workflow_step::RetryWorkflowStepOutput) with field(s):
10 /// - [`step_group_id(Option<String>)`](crate::operation::retry_workflow_step::RetryWorkflowStepOutput::step_group_id): <p>The ID of the step group.</p>
11 /// - [`workflow_id(Option<String>)`](crate::operation::retry_workflow_step::RetryWorkflowStepOutput::workflow_id): <p>The ID of the migration workflow.</p>
12 /// - [`id(Option<String>)`](crate::operation::retry_workflow_step::RetryWorkflowStepOutput::id): <p>The ID of the step.</p>
13 /// - [`status(Option<StepStatus>)`](crate::operation::retry_workflow_step::RetryWorkflowStepOutput::status): <p>The status of the step.</p>
14 /// - On failure, responds with [`SdkError<RetryWorkflowStepError>`](crate::operation::retry_workflow_step::RetryWorkflowStepError)
15 pub fn retry_workflow_step(&self) -> crate::operation::retry_workflow_step::builders::RetryWorkflowStepFluentBuilder {
16 crate::operation::retry_workflow_step::builders::RetryWorkflowStepFluentBuilder::new(self.handle.clone())
17 }
18}