// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeReplications`](crate::operation::describe_replications::builders::DescribeReplicationsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_replications::builders::DescribeReplicationsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`filters(Vec<Filter>)`](crate::operation::describe_replications::builders::DescribeReplicationsFluentBuilder::filters) / [`set_filters(Option<Vec<Filter>>)`](crate::operation::describe_replications::builders::DescribeReplicationsFluentBuilder::set_filters): <p>Filters applied to the replications.</p>
/// - [`max_records(i32)`](crate::operation::describe_replications::builders::DescribeReplicationsFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_replications::builders::DescribeReplicationsFluentBuilder::set_max_records): <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>
/// - [`marker(impl ::std::convert::Into<String>)`](crate::operation::describe_replications::builders::DescribeReplicationsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_replications::builders::DescribeReplicationsFluentBuilder::set_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>
/// - On success, responds with [`DescribeReplicationsOutput`](crate::operation::describe_replications::DescribeReplicationsOutput) with field(s):
/// - [`marker(Option<String>)`](crate::operation::describe_replications::DescribeReplicationsOutput::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>
/// - [`replications(Option<Vec<Replication>>)`](crate::operation::describe_replications::DescribeReplicationsOutput::replications): <p>The replication descriptions.</p>
/// - On failure, responds with [`SdkError<DescribeReplicationsError>`](crate::operation::describe_replications::DescribeReplicationsError)
pub fn describe_replications(&self) -> crate::operation::describe_replications::builders::DescribeReplicationsFluentBuilder {
crate::operation::describe_replications::builders::DescribeReplicationsFluentBuilder::new(self.handle.clone())
}
}