aws_sdk_rds/client/remove_from_global_cluster.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 [`RemoveFromGlobalCluster`](crate::operation::remove_from_global_cluster::builders::RemoveFromGlobalClusterFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`global_cluster_identifier(impl Into<String>)`](crate::operation::remove_from_global_cluster::builders::RemoveFromGlobalClusterFluentBuilder::global_cluster_identifier) / [`set_global_cluster_identifier(Option<String>)`](crate::operation::remove_from_global_cluster::builders::RemoveFromGlobalClusterFluentBuilder::set_global_cluster_identifier):<br>required: **false**<br><p>The cluster identifier to detach from the Aurora global database cluster.</p><br>
7 /// - [`db_cluster_identifier(impl Into<String>)`](crate::operation::remove_from_global_cluster::builders::RemoveFromGlobalClusterFluentBuilder::db_cluster_identifier) / [`set_db_cluster_identifier(Option<String>)`](crate::operation::remove_from_global_cluster::builders::RemoveFromGlobalClusterFluentBuilder::set_db_cluster_identifier):<br>required: **false**<br><p>The Amazon Resource Name (ARN) identifying the cluster that was detached from the Aurora global database cluster.</p><br>
8 /// - On success, responds with [`RemoveFromGlobalClusterOutput`](crate::operation::remove_from_global_cluster::RemoveFromGlobalClusterOutput) with field(s):
9 /// - [`global_cluster(Option<GlobalCluster>)`](crate::operation::remove_from_global_cluster::RemoveFromGlobalClusterOutput::global_cluster): <p>A data type representing an Aurora global database.</p>
10 /// - On failure, responds with [`SdkError<RemoveFromGlobalClusterError>`](crate::operation::remove_from_global_cluster::RemoveFromGlobalClusterError)
11 pub fn remove_from_global_cluster(&self) -> crate::operation::remove_from_global_cluster::builders::RemoveFromGlobalClusterFluentBuilder {
12 crate::operation::remove_from_global_cluster::builders::RemoveFromGlobalClusterFluentBuilder::new(self.handle.clone())
13 }
14}