aws-sdk-config 1.106.0

AWS SDK for AWS Config
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 [`ListConfigurationRecorders`](crate::operation::list_configuration_recorders::builders::ListConfigurationRecordersFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_configuration_recorders::builders::ListConfigurationRecordersFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`filters(ConfigurationRecorderFilter)`](crate::operation::list_configuration_recorders::builders::ListConfigurationRecordersFluentBuilder::filters) / [`set_filters(Option<Vec::<ConfigurationRecorderFilter>>)`](crate::operation::list_configuration_recorders::builders::ListConfigurationRecordersFluentBuilder::set_filters):<br>required: **false**<br><p>Filters the results based on a list of <code>ConfigurationRecorderFilter</code> objects that you specify.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_configuration_recorders::builders::ListConfigurationRecordersFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_configuration_recorders::builders::ListConfigurationRecordersFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to include in the response.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_configuration_recorders::builders::ListConfigurationRecordersFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_configuration_recorders::builders::ListConfigurationRecordersFluentBuilder::set_next_token):<br>required: **false**<br><p>The <code>NextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p><br>
    /// - On success, responds with [`ListConfigurationRecordersOutput`](crate::operation::list_configuration_recorders::ListConfigurationRecordersOutput) with field(s):
    ///   - [`configuration_recorder_summaries(Vec::<ConfigurationRecorderSummary>)`](crate::operation::list_configuration_recorders::ListConfigurationRecordersOutput::configuration_recorder_summaries): <p>A list of <code>ConfigurationRecorderSummary</code> objects that includes.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_configuration_recorders::ListConfigurationRecordersOutput::next_token): <p>The <code>NextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
    /// - On failure, responds with [`SdkError<ListConfigurationRecordersError>`](crate::operation::list_configuration_recorders::ListConfigurationRecordersError)
    pub fn list_configuration_recorders(&self) -> crate::operation::list_configuration_recorders::builders::ListConfigurationRecordersFluentBuilder {
        crate::operation::list_configuration_recorders::builders::ListConfigurationRecordersFluentBuilder::new(self.handle.clone())
    }
}