aws_sdk_databasemigration/client/describe_data_migrations.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeDataMigrations`](crate::operation::describe_data_migrations::builders::DescribeDataMigrationsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_data_migrations::builders::DescribeDataMigrationsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`filters(Filter)`](crate::operation::describe_data_migrations::builders::DescribeDataMigrationsFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::describe_data_migrations::builders::DescribeDataMigrationsFluentBuilder::set_filters):<br>required: **false**<br><p>Filters applied to the data migrations.</p><br>
/// - [`max_records(i32)`](crate::operation::describe_data_migrations::builders::DescribeDataMigrationsFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_data_migrations::builders::DescribeDataMigrationsFluentBuilder::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><br>
/// - [`marker(impl Into<String>)`](crate::operation::describe_data_migrations::builders::DescribeDataMigrationsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_data_migrations::builders::DescribeDataMigrationsFluentBuilder::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_data_migrations::builders::DescribeDataMigrationsFluentBuilder::without_settings) / [`set_without_settings(Option<bool>)`](crate::operation::describe_data_migrations::builders::DescribeDataMigrationsFluentBuilder::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>
/// - [`without_statistics(bool)`](crate::operation::describe_data_migrations::builders::DescribeDataMigrationsFluentBuilder::without_statistics) / [`set_without_statistics(Option<bool>)`](crate::operation::describe_data_migrations::builders::DescribeDataMigrationsFluentBuilder::set_without_statistics):<br>required: **false**<br><p>An option to set to avoid returning information about statistics. Use this to reduce overhead when statistics 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 [`DescribeDataMigrationsOutput`](crate::operation::describe_data_migrations::DescribeDataMigrationsOutput) with field(s):
/// - [`data_migrations(Option<Vec::<DataMigration>>)`](crate::operation::describe_data_migrations::DescribeDataMigrationsOutput::data_migrations): <p>Returns information about the data migrations used in the project.</p>
/// - [`marker(Option<String>)`](crate::operation::describe_data_migrations::DescribeDataMigrationsOutput::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 failure, responds with [`SdkError<DescribeDataMigrationsError>`](crate::operation::describe_data_migrations::DescribeDataMigrationsError)
pub fn describe_data_migrations(&self) -> crate::operation::describe_data_migrations::builders::DescribeDataMigrationsFluentBuilder {
crate::operation::describe_data_migrations::builders::DescribeDataMigrationsFluentBuilder::new(self.handle.clone())
}
}