aws_sdk_databasemigration/client/refresh_schemas.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 [`RefreshSchemas`](crate::operation::refresh_schemas::builders::RefreshSchemasFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`RefreshSchemasOutput`](crate::operation::refresh_schemas::RefreshSchemasOutput) with field(s):
9 /// - [`refresh_schemas_status(Option<RefreshSchemasStatus>)`](crate::operation::refresh_schemas::RefreshSchemasOutput::refresh_schemas_status): <p>The status of the refreshed schema.</p>
10 /// - On failure, responds with [`SdkError<RefreshSchemasError>`](crate::operation::refresh_schemas::RefreshSchemasError)
11 pub fn refresh_schemas(&self) -> crate::operation::refresh_schemas::builders::RefreshSchemasFluentBuilder {
12 crate::operation::refresh_schemas::builders::RefreshSchemasFluentBuilder::new(self.handle.clone())
13 }
14}