aws_sdk_databasemigration/client/
describe_data_providers.rs

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 [`DescribeDataProviders`](crate::operation::describe_data_providers::builders::DescribeDataProvidersFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_data_providers::builders::DescribeDataProvidersFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`filters(Filter)`](crate::operation::describe_data_providers::builders::DescribeDataProvidersFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::describe_data_providers::builders::DescribeDataProvidersFluentBuilder::set_filters):<br>required: **false**<br><p>Filters applied to the data providers described in the form of key-value pairs.</p> <p>Valid filter names and values: data-provider-identifier, data provider arn or name</p><br>
    ///   - [`max_records(i32)`](crate::operation::describe_data_providers::builders::DescribeDataProvidersFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_data_providers::builders::DescribeDataProvidersFluentBuilder::set_max_records):<br>required: **false**<br><p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, DMS includes a pagination token in the response so that you can retrieve the remaining results.</p><br>
    ///   - [`marker(impl Into<String>)`](crate::operation::describe_data_providers::builders::DescribeDataProvidersFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_data_providers::builders::DescribeDataProvidersFluentBuilder::set_marker):<br>required: **false**<br><p>Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p> <p>If <code>Marker</code> is returned by a previous response, there are more results available. The value of <code>Marker</code> is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.</p><br>
    /// - On success, responds with [`DescribeDataProvidersOutput`](crate::operation::describe_data_providers::DescribeDataProvidersOutput) with field(s):
    ///   - [`marker(Option<String>)`](crate::operation::describe_data_providers::DescribeDataProvidersOutput::marker): <p>Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p> <p>If <code>Marker</code> is returned by a previous response, there are more results available. The value of <code>Marker</code> is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.</p>
    ///   - [`data_providers(Option<Vec::<DataProvider>>)`](crate::operation::describe_data_providers::DescribeDataProvidersOutput::data_providers): <p>A description of data providers.</p>
    /// - On failure, responds with [`SdkError<DescribeDataProvidersError>`](crate::operation::describe_data_providers::DescribeDataProvidersError)
    pub fn describe_data_providers(&self) -> crate::operation::describe_data_providers::builders::DescribeDataProvidersFluentBuilder {
        crate::operation::describe_data_providers::builders::DescribeDataProvidersFluentBuilder::new(self.handle.clone())
    }
}