aws_sdk_redshift/client/
delete_cluster_subnet_group.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 [`DeleteClusterSubnetGroup`](crate::operation::delete_cluster_subnet_group::builders::DeleteClusterSubnetGroupFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`cluster_subnet_group_name(impl Into<String>)`](crate::operation::delete_cluster_subnet_group::builders::DeleteClusterSubnetGroupFluentBuilder::cluster_subnet_group_name) / [`set_cluster_subnet_group_name(Option<String>)`](crate::operation::delete_cluster_subnet_group::builders::DeleteClusterSubnetGroupFluentBuilder::set_cluster_subnet_group_name):<br>required: **true**<br><p>The name of the cluster subnet group name to be deleted.</p><br>
7    /// - On success, responds with [`DeleteClusterSubnetGroupOutput`](crate::operation::delete_cluster_subnet_group::DeleteClusterSubnetGroupOutput)
8    /// - On failure, responds with [`SdkError<DeleteClusterSubnetGroupError>`](crate::operation::delete_cluster_subnet_group::DeleteClusterSubnetGroupError)
9    pub fn delete_cluster_subnet_group(&self) -> crate::operation::delete_cluster_subnet_group::builders::DeleteClusterSubnetGroupFluentBuilder {
10        crate::operation::delete_cluster_subnet_group::builders::DeleteClusterSubnetGroupFluentBuilder::new(self.handle.clone())
11    }
12}