aws_sdk_databasemigration/client/describe_replication_subnet_groups.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeReplicationSubnetGroups`](crate::operation::describe_replication_subnet_groups::builders::DescribeReplicationSubnetGroupsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_replication_subnet_groups::builders::DescribeReplicationSubnetGroupsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`filters(Filter)`](crate::operation::describe_replication_subnet_groups::builders::DescribeReplicationSubnetGroupsFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::describe_replication_subnet_groups::builders::DescribeReplicationSubnetGroupsFluentBuilder::set_filters):<br>required: **false**<br><p>Filters applied to replication subnet groups.</p> <p>Valid filter names: replication-subnet-group-id</p><br>
/// - [`max_records(i32)`](crate::operation::describe_replication_subnet_groups::builders::DescribeReplicationSubnetGroupsFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_replication_subnet_groups::builders::DescribeReplicationSubnetGroupsFluentBuilder::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, a pagination token called a marker is included in the response so that the remaining results can be retrieved.</p> <p>Default: 100</p> <p>Constraints: Minimum 20, maximum 100.</p><br>
/// - [`marker(impl Into<String>)`](crate::operation::describe_replication_subnet_groups::builders::DescribeReplicationSubnetGroupsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_replication_subnet_groups::builders::DescribeReplicationSubnetGroupsFluentBuilder::set_marker):<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>MaxRecords</code>.</p><br>
/// - On success, responds with [`DescribeReplicationSubnetGroupsOutput`](crate::operation::describe_replication_subnet_groups::DescribeReplicationSubnetGroupsOutput) with field(s):
/// - [`marker(Option<String>)`](crate::operation::describe_replication_subnet_groups::DescribeReplicationSubnetGroupsOutput::marker): <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>MaxRecords</code>.</p>
/// - [`replication_subnet_groups(Option<Vec::<ReplicationSubnetGroup>>)`](crate::operation::describe_replication_subnet_groups::DescribeReplicationSubnetGroupsOutput::replication_subnet_groups): <p>A description of the replication subnet groups.</p>
/// - On failure, responds with [`SdkError<DescribeReplicationSubnetGroupsError>`](crate::operation::describe_replication_subnet_groups::DescribeReplicationSubnetGroupsError)
pub fn describe_replication_subnet_groups(
&self,
) -> crate::operation::describe_replication_subnet_groups::builders::DescribeReplicationSubnetGroupsFluentBuilder {
crate::operation::describe_replication_subnet_groups::builders::DescribeReplicationSubnetGroupsFluentBuilder::new(self.handle.clone())
}
}