aws-sdk-drs 1.117.0

AWS SDK for Elastic Disaster Recovery Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListRecoveryPlanSteps`](crate::operation::list_recovery_plan_steps::builders::ListRecoveryPlanStepsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_recovery_plan_steps::builders::ListRecoveryPlanStepsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`recovery_plan_arn(impl Into<String>)`](crate::operation::list_recovery_plan_steps::builders::ListRecoveryPlanStepsFluentBuilder::recovery_plan_arn) / [`set_recovery_plan_arn(Option<String>)`](crate::operation::list_recovery_plan_steps::builders::ListRecoveryPlanStepsFluentBuilder::set_recovery_plan_arn):<br>required: **true**<br><p>The ARN of the Recovery Plan.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_recovery_plan_steps::builders::ListRecoveryPlanStepsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_recovery_plan_steps::builders::ListRecoveryPlanStepsFluentBuilder::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_steps::builders::ListRecoveryPlanStepsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_recovery_plan_steps::builders::ListRecoveryPlanStepsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next page of results.</p><br>
    /// - On success, responds with [`ListRecoveryPlanStepsOutput`](crate::operation::list_recovery_plan_steps::ListRecoveryPlanStepsOutput) with field(s):
    ///   - [`recovery_plan_steps(Vec::<RecoveryPlanStep>)`](crate::operation::list_recovery_plan_steps::ListRecoveryPlanStepsOutput::recovery_plan_steps): <p>The list of Recovery Plan steps.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_recovery_plan_steps::ListRecoveryPlanStepsOutput::next_token): <p>The token for the next page of results.</p>
    /// - On failure, responds with [`SdkError<ListRecoveryPlanStepsError>`](crate::operation::list_recovery_plan_steps::ListRecoveryPlanStepsError)
    pub fn list_recovery_plan_steps(&self) -> crate::operation::list_recovery_plan_steps::builders::ListRecoveryPlanStepsFluentBuilder {
        crate::operation::list_recovery_plan_steps::builders::ListRecoveryPlanStepsFluentBuilder::new(self.handle.clone())
    }
}