aws_sdk_databasemigration/client/describe_replication_tasks.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeReplicationTasks`](crate::operation::describe_replication_tasks::builders::DescribeReplicationTasksFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_replication_tasks::builders::DescribeReplicationTasksFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`filters(Filter)`](crate::operation::describe_replication_tasks::builders::DescribeReplicationTasksFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::describe_replication_tasks::builders::DescribeReplicationTasksFluentBuilder::set_filters):<br>required: **false**<br><p>Filters applied to replication tasks.</p> <p>Valid filter names: replication-task-arn | replication-task-id | migration-type | endpoint-arn | replication-instance-arn</p><br>
/// - [`max_records(i32)`](crate::operation::describe_replication_tasks::builders::DescribeReplicationTasksFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_replication_tasks::builders::DescribeReplicationTasksFluentBuilder::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_tasks::builders::DescribeReplicationTasksFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_replication_tasks::builders::DescribeReplicationTasksFluentBuilder::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>
/// - [`without_settings(bool)`](crate::operation::describe_replication_tasks::builders::DescribeReplicationTasksFluentBuilder::without_settings) / [`set_without_settings(Option<bool>)`](crate::operation::describe_replication_tasks::builders::DescribeReplicationTasksFluentBuilder::set_without_settings):<br>required: **false**<br><p>An option to set to avoid returning information about settings. Use this to reduce overhead when setting information is too large. To use this option, choose <code>true</code>; otherwise, choose <code>false</code> (the default).</p><br>
/// - On success, responds with [`DescribeReplicationTasksOutput`](crate::operation::describe_replication_tasks::DescribeReplicationTasksOutput) with field(s):
/// - [`marker(Option<String>)`](crate::operation::describe_replication_tasks::DescribeReplicationTasksOutput::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_tasks(Option<Vec::<ReplicationTask>>)`](crate::operation::describe_replication_tasks::DescribeReplicationTasksOutput::replication_tasks): <p>A description of the replication tasks.</p>
/// - On failure, responds with [`SdkError<DescribeReplicationTasksError>`](crate::operation::describe_replication_tasks::DescribeReplicationTasksError)
pub fn describe_replication_tasks(&self) -> crate::operation::describe_replication_tasks::builders::DescribeReplicationTasksFluentBuilder {
crate::operation::describe_replication_tasks::builders::DescribeReplicationTasksFluentBuilder::new(self.handle.clone())
}
}