aws-sdk-drs 1.118.0

AWS SDK for Elastic Disaster Recovery Service
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListRecoveryPlanExecutionSteps`](crate::operation::list_recovery_plan_execution_steps::builders::ListRecoveryPlanExecutionStepsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_recovery_plan_execution_steps::builders::ListRecoveryPlanExecutionStepsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`recovery_plan_execution_arn(impl Into<String>)`](crate::operation::list_recovery_plan_execution_steps::builders::ListRecoveryPlanExecutionStepsFluentBuilder::recovery_plan_execution_arn) / [`set_recovery_plan_execution_arn(Option<String>)`](crate::operation::list_recovery_plan_execution_steps::builders::ListRecoveryPlanExecutionStepsFluentBuilder::set_recovery_plan_execution_arn):<br>required: **true**<br><p>The ARN of the Recovery Plan execution.</p><br>
    ///   - [`filter(ListRecoveryPlanExecutionStepsFilter)`](crate::operation::list_recovery_plan_execution_steps::builders::ListRecoveryPlanExecutionStepsFluentBuilder::filter) / [`set_filter(Option<ListRecoveryPlanExecutionStepsFilter>)`](crate::operation::list_recovery_plan_execution_steps::builders::ListRecoveryPlanExecutionStepsFluentBuilder::set_filter):<br>required: **false**<br><p>Filters for listing execution steps.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_recovery_plan_execution_steps::builders::ListRecoveryPlanExecutionStepsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_recovery_plan_execution_steps::builders::ListRecoveryPlanExecutionStepsFluentBuilder::set_max_results):<br>required: **false**<br><p>Maximum number of results to return.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_recovery_plan_execution_steps::builders::ListRecoveryPlanExecutionStepsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_recovery_plan_execution_steps::builders::ListRecoveryPlanExecutionStepsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next page of results.</p><br>
    /// - On success, responds with [`ListRecoveryPlanExecutionStepsOutput`](crate::operation::list_recovery_plan_execution_steps::ListRecoveryPlanExecutionStepsOutput) with field(s):
    ///   - [`recovery_plan_execution_steps(Vec::<RecoveryPlanExecutionStepSummary>)`](crate::operation::list_recovery_plan_execution_steps::ListRecoveryPlanExecutionStepsOutput::recovery_plan_execution_steps): <p>The list of execution steps.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_recovery_plan_execution_steps::ListRecoveryPlanExecutionStepsOutput::next_token): <p>The token for the next page of results.</p>
    /// - On failure, responds with [`SdkError<ListRecoveryPlanExecutionStepsError>`](crate::operation::list_recovery_plan_execution_steps::ListRecoveryPlanExecutionStepsError)
    pub fn list_recovery_plan_execution_steps(
        &self,
    ) -> crate::operation::list_recovery_plan_execution_steps::builders::ListRecoveryPlanExecutionStepsFluentBuilder {
        crate::operation::list_recovery_plan_execution_steps::builders::ListRecoveryPlanExecutionStepsFluentBuilder::new(self.handle.clone())
    }
}