aws_sdk_neptune/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: **true**<br><p>The identifier of the Neptune global database from which to detach the specified Neptune DB 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: **true**<br><p>The Amazon Resource Name (ARN) identifying the cluster to be detached from the Neptune 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>Contains the details of an Amazon Neptune global database.</p> <p>This data type is used as a response element for the <code>CreateGlobalCluster</code>, <code>DescribeGlobalClusters</code>, <code>ModifyGlobalCluster</code>, <code>DeleteGlobalCluster</code>, <code>FailoverGlobalCluster</code>, and <code>RemoveFromGlobalCluster</code> actions.</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}