aws_sdk_databasemigration/client/describe_replication_task_assessment_runs.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeReplicationTaskAssessmentRuns`](crate::operation::describe_replication_task_assessment_runs::builders::DescribeReplicationTaskAssessmentRunsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_replication_task_assessment_runs::builders::DescribeReplicationTaskAssessmentRunsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`filters(Filter)`](crate::operation::describe_replication_task_assessment_runs::builders::DescribeReplicationTaskAssessmentRunsFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::describe_replication_task_assessment_runs::builders::DescribeReplicationTaskAssessmentRunsFluentBuilder::set_filters):<br>required: **false**<br><p>Filters applied to the premigration assessment runs described in the form of key-value pairs.</p> <p>Valid filter names: <code>replication-task-assessment-run-arn</code>, <code>replication-task-arn</code>, <code>replication-instance-arn</code>, <code>status</code></p><br>
/// - [`max_records(i32)`](crate::operation::describe_replication_task_assessment_runs::builders::DescribeReplicationTaskAssessmentRunsFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_replication_task_assessment_runs::builders::DescribeReplicationTaskAssessmentRunsFluentBuilder::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_replication_task_assessment_runs::builders::DescribeReplicationTaskAssessmentRunsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_replication_task_assessment_runs::builders::DescribeReplicationTaskAssessmentRunsFluentBuilder::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 [`DescribeReplicationTaskAssessmentRunsOutput`](crate::operation::describe_replication_task_assessment_runs::DescribeReplicationTaskAssessmentRunsOutput) with field(s):
/// - [`marker(Option<String>)`](crate::operation::describe_replication_task_assessment_runs::DescribeReplicationTaskAssessmentRunsOutput::marker): <p>A pagination token returned for you to pass to a subsequent request. If you pass this token as the <code>Marker</code> value in a subsequent request, the response includes only records beyond the marker, up to the value specified in the request by <code>MaxRecords</code>.</p>
/// - [`replication_task_assessment_runs(Option<Vec::<ReplicationTaskAssessmentRun>>)`](crate::operation::describe_replication_task_assessment_runs::DescribeReplicationTaskAssessmentRunsOutput::replication_task_assessment_runs): <p>One or more premigration assessment runs as specified by <code>Filters</code>.</p>
/// - On failure, responds with [`SdkError<DescribeReplicationTaskAssessmentRunsError>`](crate::operation::describe_replication_task_assessment_runs::DescribeReplicationTaskAssessmentRunsError)
pub fn describe_replication_task_assessment_runs(
&self,
) -> crate::operation::describe_replication_task_assessment_runs::builders::DescribeReplicationTaskAssessmentRunsFluentBuilder {
crate::operation::describe_replication_task_assessment_runs::builders::DescribeReplicationTaskAssessmentRunsFluentBuilder::new(
self.handle.clone(),
)
}
}