aws_sdk_databasemigration/client/
describe_replication_task_assessment_results.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeReplicationTaskAssessmentResults`](crate::operation::describe_replication_task_assessment_results::builders::DescribeReplicationTaskAssessmentResultsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_replication_task_assessment_results::builders::DescribeReplicationTaskAssessmentResultsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`replication_task_arn(impl Into<String>)`](crate::operation::describe_replication_task_assessment_results::builders::DescribeReplicationTaskAssessmentResultsFluentBuilder::replication_task_arn) / [`set_replication_task_arn(Option<String>)`](crate::operation::describe_replication_task_assessment_results::builders::DescribeReplicationTaskAssessmentResultsFluentBuilder::set_replication_task_arn):<br>required: **false**<br><p>The Amazon Resource Name (ARN) string that uniquely identifies the task. When this input parameter is specified, the API returns only one result and ignore the values of the <code>MaxRecords</code> and <code>Marker</code> parameters.</p><br>
    ///   - [`max_records(i32)`](crate::operation::describe_replication_task_assessment_results::builders::DescribeReplicationTaskAssessmentResultsFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_replication_task_assessment_results::builders::DescribeReplicationTaskAssessmentResultsFluentBuilder::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_task_assessment_results::builders::DescribeReplicationTaskAssessmentResultsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_replication_task_assessment_results::builders::DescribeReplicationTaskAssessmentResultsFluentBuilder::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 [`DescribeReplicationTaskAssessmentResultsOutput`](crate::operation::describe_replication_task_assessment_results::DescribeReplicationTaskAssessmentResultsOutput) with field(s):
    ///   - [`marker(Option<String>)`](crate::operation::describe_replication_task_assessment_results::DescribeReplicationTaskAssessmentResultsOutput::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>
    ///   - [`bucket_name(Option<String>)`](crate::operation::describe_replication_task_assessment_results::DescribeReplicationTaskAssessmentResultsOutput::bucket_name): <p>- The Amazon S3 bucket where the task assessment report is located.</p>
    ///   - [`replication_task_assessment_results(Option<Vec::<ReplicationTaskAssessmentResult>>)`](crate::operation::describe_replication_task_assessment_results::DescribeReplicationTaskAssessmentResultsOutput::replication_task_assessment_results): <p>The task assessment report.</p>
    /// - On failure, responds with [`SdkError<DescribeReplicationTaskAssessmentResultsError>`](crate::operation::describe_replication_task_assessment_results::DescribeReplicationTaskAssessmentResultsError)
    pub fn describe_replication_task_assessment_results(
        &self,
    ) -> crate::operation::describe_replication_task_assessment_results::builders::DescribeReplicationTaskAssessmentResultsFluentBuilder {
        crate::operation::describe_replication_task_assessment_results::builders::DescribeReplicationTaskAssessmentResultsFluentBuilder::new(
            self.handle.clone(),
        )
    }
}