1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListRecoveryPoints`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl ::std::convert::Into<String>)`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::set_next_token): <p>If your initial <code>ListRecoveryPoints</code> operation returns a <code>nextToken</code>, you can include the returned <code>nextToken</code> in following <code>ListRecoveryPoints</code> operations, which returns results in the next page.</p>
    ///   - [`max_results(i32)`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::set_max_results): <p>An optional parameter that specifies the maximum number of results to return. You can use <code>nextToken</code> to display the next page of results.</p>
    ///   - [`start_time(DateTime)`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::start_time) / [`set_start_time(Option<DateTime>)`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::set_start_time): <p>The time when the recovery point's creation was initiated.</p>
    ///   - [`end_time(DateTime)`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::end_time) / [`set_end_time(Option<DateTime>)`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::set_end_time): <p>The time when creation of the recovery point finished.</p>
    ///   - [`namespace_name(impl ::std::convert::Into<String>)`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::namespace_name) / [`set_namespace_name(Option<String>)`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::set_namespace_name): <p>The name of the namespace to list recovery points for.</p>
    ///   - [`namespace_arn(impl ::std::convert::Into<String>)`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::namespace_arn) / [`set_namespace_arn(Option<String>)`](crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::set_namespace_arn): <p>The Amazon Resource Name (ARN) of the namespace from which to list recovery points.</p>
    /// - On success, responds with [`ListRecoveryPointsOutput`](crate::operation::list_recovery_points::ListRecoveryPointsOutput) with field(s):
    ///   - [`recovery_points(Option<Vec<RecoveryPoint>>)`](crate::operation::list_recovery_points::ListRecoveryPointsOutput::recovery_points): <p>The returned recovery point objects.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_recovery_points::ListRecoveryPointsOutput::next_token): <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.</p>
    /// - On failure, responds with [`SdkError<ListRecoveryPointsError>`](crate::operation::list_recovery_points::ListRecoveryPointsError)
    pub fn list_recovery_points(
        &self,
    ) -> crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder {
        crate::operation::list_recovery_points::builders::ListRecoveryPointsFluentBuilder::new(
            self.handle.clone(),
        )
    }
}