aws_sdk_databasemigration/client/
describe_schemas.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeSchemas`](crate::operation::describe_schemas::builders::DescribeSchemasFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_schemas::builders::DescribeSchemasFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`endpoint_arn(impl Into<String>)`](crate::operation::describe_schemas::builders::DescribeSchemasFluentBuilder::endpoint_arn) / [`set_endpoint_arn(Option<String>)`](crate::operation::describe_schemas::builders::DescribeSchemasFluentBuilder::set_endpoint_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.</p><br>
    ///   - [`max_records(i32)`](crate::operation::describe_schemas::builders::DescribeSchemasFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_schemas::builders::DescribeSchemasFluentBuilder::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_schemas::builders::DescribeSchemasFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_schemas::builders::DescribeSchemasFluentBuilder::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 [`DescribeSchemasOutput`](crate::operation::describe_schemas::DescribeSchemasOutput) with field(s):
    ///   - [`marker(Option<String>)`](crate::operation::describe_schemas::DescribeSchemasOutput::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>
    ///   - [`schemas(Option<Vec::<String>>)`](crate::operation::describe_schemas::DescribeSchemasOutput::schemas): <p>The described schema.</p>
    /// - On failure, responds with [`SdkError<DescribeSchemasError>`](crate::operation::describe_schemas::DescribeSchemasError)
    pub fn describe_schemas(&self) -> crate::operation::describe_schemas::builders::DescribeSchemasFluentBuilder {
        crate::operation::describe_schemas::builders::DescribeSchemasFluentBuilder::new(self.handle.clone())
    }
}