// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeMigrationProjects`](crate::operation::describe_migration_projects::builders::DescribeMigrationProjectsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_migration_projects::builders::DescribeMigrationProjectsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`filters(Filter)`](crate::operation::describe_migration_projects::builders::DescribeMigrationProjectsFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::describe_migration_projects::builders::DescribeMigrationProjectsFluentBuilder::set_filters):<br>required: **false**<br><p>The filters to apply to the migration projects.</p> <p>The following filter names are supported:</p> <ul> <li> <p><code>migration-project-identifier</code> – The migration project name or ARN.</p></li> <li> <p><code>instance-profile-identifier</code> – The instance profile name or ARN.</p></li> <li> <p><code>data-provider-identifier</code> – The source or target data provider name or ARN.</p></li> <li> <p><code>source-data-provider-identifier</code> – The source data provider name or ARN.</p></li> <li> <p><code>target-data-provider-identifier</code> – The target data provider name or ARN.</p></li> </ul><br>
/// - [`max_records(i32)`](crate::operation::describe_migration_projects::builders::DescribeMigrationProjectsFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_migration_projects::builders::DescribeMigrationProjectsFluentBuilder::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_migration_projects::builders::DescribeMigrationProjectsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_migration_projects::builders::DescribeMigrationProjectsFluentBuilder::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 [`DescribeMigrationProjectsOutput`](crate::operation::describe_migration_projects::DescribeMigrationProjectsOutput) with field(s):
/// - [`marker(Option<String>)`](crate::operation::describe_migration_projects::DescribeMigrationProjectsOutput::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>
/// - [`migration_projects(Option<Vec::<MigrationProject>>)`](crate::operation::describe_migration_projects::DescribeMigrationProjectsOutput::migration_projects): <p>A description of migration projects.</p>
/// - On failure, responds with [`SdkError<DescribeMigrationProjectsError>`](crate::operation::describe_migration_projects::DescribeMigrationProjectsError)
pub fn describe_migration_projects(&self) -> crate::operation::describe_migration_projects::builders::DescribeMigrationProjectsFluentBuilder {
crate::operation::describe_migration_projects::builders::DescribeMigrationProjectsFluentBuilder::new(self.handle.clone())
}
}