aws_sdk_rds/client/
delete_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 [`DeleteGlobalCluster`](crate::operation::delete_global_cluster::builders::DeleteGlobalClusterFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`global_cluster_identifier(impl Into<String>)`](crate::operation::delete_global_cluster::builders::DeleteGlobalClusterFluentBuilder::global_cluster_identifier) / [`set_global_cluster_identifier(Option<String>)`](crate::operation::delete_global_cluster::builders::DeleteGlobalClusterFluentBuilder::set_global_cluster_identifier):<br>required: **true**<br><p>The cluster identifier of the global database cluster being deleted.</p><br>
7    /// - On success, responds with [`DeleteGlobalClusterOutput`](crate::operation::delete_global_cluster::DeleteGlobalClusterOutput) with field(s):
8    ///   - [`global_cluster(Option<GlobalCluster>)`](crate::operation::delete_global_cluster::DeleteGlobalClusterOutput::global_cluster): <p>A data type representing an Aurora global database.</p>
9    /// - On failure, responds with [`SdkError<DeleteGlobalClusterError>`](crate::operation::delete_global_cluster::DeleteGlobalClusterError)
10    pub fn delete_global_cluster(&self) -> crate::operation::delete_global_cluster::builders::DeleteGlobalClusterFluentBuilder {
11        crate::operation::delete_global_cluster::builders::DeleteGlobalClusterFluentBuilder::new(self.handle.clone())
12    }
13}