aws-sdk-drs 1.116.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 [`ListRecoveryPlanExecutions`](crate::operation::list_recovery_plan_executions::builders::ListRecoveryPlanExecutionsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_recovery_plan_executions::builders::ListRecoveryPlanExecutionsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`recovery_plan_arn(impl Into<String>)`](crate::operation::list_recovery_plan_executions::builders::ListRecoveryPlanExecutionsFluentBuilder::recovery_plan_arn) / [`set_recovery_plan_arn(Option<String>)`](crate::operation::list_recovery_plan_executions::builders::ListRecoveryPlanExecutionsFluentBuilder::set_recovery_plan_arn):<br>required: **false**<br><p>Filter executions by Recovery Plan ARN.</p><br>
    ///   - [`status(RecoveryPlanExecutionStatus)`](crate::operation::list_recovery_plan_executions::builders::ListRecoveryPlanExecutionsFluentBuilder::status) / [`set_status(Option<RecoveryPlanExecutionStatus>)`](crate::operation::list_recovery_plan_executions::builders::ListRecoveryPlanExecutionsFluentBuilder::set_status):<br>required: **false**<br><p>Filter executions by status.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_recovery_plan_executions::builders::ListRecoveryPlanExecutionsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_recovery_plan_executions::builders::ListRecoveryPlanExecutionsFluentBuilder::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_executions::builders::ListRecoveryPlanExecutionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_recovery_plan_executions::builders::ListRecoveryPlanExecutionsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next page of results.</p><br>
    /// - On success, responds with [`ListRecoveryPlanExecutionsOutput`](crate::operation::list_recovery_plan_executions::ListRecoveryPlanExecutionsOutput) with field(s):
    ///   - [`recovery_plan_executions(Vec::<RecoveryPlanExecutionSummary>)`](crate::operation::list_recovery_plan_executions::ListRecoveryPlanExecutionsOutput::recovery_plan_executions): <p>The list of Recovery Plan executions.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_recovery_plan_executions::ListRecoveryPlanExecutionsOutput::next_token): <p>The token for the next page of results.</p>
    /// - On failure, responds with [`SdkError<ListRecoveryPlanExecutionsError>`](crate::operation::list_recovery_plan_executions::ListRecoveryPlanExecutionsError)
    pub fn list_recovery_plan_executions(
        &self,
    ) -> crate::operation::list_recovery_plan_executions::builders::ListRecoveryPlanExecutionsFluentBuilder {
        crate::operation::list_recovery_plan_executions::builders::ListRecoveryPlanExecutionsFluentBuilder::new(self.handle.clone())
    }
}