aws_sdk_databasemigration/client/refresh_schemas.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`RefreshSchemas`](crate::operation::refresh_schemas::builders::RefreshSchemasFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`endpoint_arn(impl Into<String>)`](crate::operation::refresh_schemas::builders::RefreshSchemasFluentBuilder::endpoint_arn) / [`set_endpoint_arn(Option<String>)`](crate::operation::refresh_schemas::builders::RefreshSchemasFluentBuilder::set_endpoint_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.</p><br>
/// - [`replication_instance_arn(impl Into<String>)`](crate::operation::refresh_schemas::builders::RefreshSchemasFluentBuilder::replication_instance_arn) / [`set_replication_instance_arn(Option<String>)`](crate::operation::refresh_schemas::builders::RefreshSchemasFluentBuilder::set_replication_instance_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the replication instance.</p><br>
/// - On success, responds with [`RefreshSchemasOutput`](crate::operation::refresh_schemas::RefreshSchemasOutput) with field(s):
/// - [`refresh_schemas_status(Option<RefreshSchemasStatus>)`](crate::operation::refresh_schemas::RefreshSchemasOutput::refresh_schemas_status): <p>The status of the refreshed schema.</p>
/// - On failure, responds with [`SdkError<RefreshSchemasError>`](crate::operation::refresh_schemas::RefreshSchemasError)
pub fn refresh_schemas(&self) -> crate::operation::refresh_schemas::builders::RefreshSchemasFluentBuilder {
crate::operation::refresh_schemas::builders::RefreshSchemasFluentBuilder::new(self.handle.clone())
}
}