aws-sdk-docdbelastic 1.78.0

AWS SDK for Amazon DocumentDB Elastic Clusters
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListPendingMaintenanceActions`](crate::operation::list_pending_maintenance_actions::builders::ListPendingMaintenanceActionsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_pending_maintenance_actions::builders::ListPendingMaintenanceActionsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_pending_maintenance_actions::builders::ListPendingMaintenanceActionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_pending_maintenance_actions::builders::ListPendingMaintenanceActionsFluentBuilder::set_next_token):<br>required: **false**<br><p>An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>maxResults</code>.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_pending_maintenance_actions::builders::ListPendingMaintenanceActionsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_pending_maintenance_actions::builders::ListPendingMaintenanceActionsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to include in the response. If more records exist than the specified <code>maxResults</code> value, a pagination token (marker) is included in the response so that the remaining results can be retrieved.</p><br>
    /// - On success, responds with [`ListPendingMaintenanceActionsOutput`](crate::operation::list_pending_maintenance_actions::ListPendingMaintenanceActionsOutput) with field(s):
    ///   - [`resource_pending_maintenance_actions(Vec::<ResourcePendingMaintenanceAction>)`](crate::operation::list_pending_maintenance_actions::ListPendingMaintenanceActionsOutput::resource_pending_maintenance_actions): <p>Provides information about a pending maintenance action for a resource.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_pending_maintenance_actions::ListPendingMaintenanceActionsOutput::next_token): <p>An optional pagination token provided by a previous request. If this parameter is displayed, the responses will include only records beyond the marker, up to the value specified by <code>maxResults</code>.</p>
    /// - On failure, responds with [`SdkError<ListPendingMaintenanceActionsError>`](crate::operation::list_pending_maintenance_actions::ListPendingMaintenanceActionsError)
    pub fn list_pending_maintenance_actions(
        &self,
    ) -> crate::operation::list_pending_maintenance_actions::builders::ListPendingMaintenanceActionsFluentBuilder {
        crate::operation::list_pending_maintenance_actions::builders::ListPendingMaintenanceActionsFluentBuilder::new(self.handle.clone())
    }
}