aws_sdk_databasemigration/client/
describe_refresh_schemas_status.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DescribeRefreshSchemasStatus`](crate::operation::describe_refresh_schemas_status::builders::DescribeRefreshSchemasStatusFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`endpoint_arn(impl Into<String>)`](crate::operation::describe_refresh_schemas_status::builders::DescribeRefreshSchemasStatusFluentBuilder::endpoint_arn) / [`set_endpoint_arn(Option<String>)`](crate::operation::describe_refresh_schemas_status::builders::DescribeRefreshSchemasStatusFluentBuilder::set_endpoint_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.</p><br>
7    /// - On success, responds with [`DescribeRefreshSchemasStatusOutput`](crate::operation::describe_refresh_schemas_status::DescribeRefreshSchemasStatusOutput) with field(s):
8    ///   - [`refresh_schemas_status(Option<RefreshSchemasStatus>)`](crate::operation::describe_refresh_schemas_status::DescribeRefreshSchemasStatusOutput::refresh_schemas_status): <p>The status of the schema.</p>
9    /// - On failure, responds with [`SdkError<DescribeRefreshSchemasStatusError>`](crate::operation::describe_refresh_schemas_status::DescribeRefreshSchemasStatusError)
10    pub fn describe_refresh_schemas_status(
11        &self,
12    ) -> crate::operation::describe_refresh_schemas_status::builders::DescribeRefreshSchemasStatusFluentBuilder {
13        crate::operation::describe_refresh_schemas_status::builders::DescribeRefreshSchemasStatusFluentBuilder::new(self.handle.clone())
14    }
15}