aws_sdk_redshift/client/
delete_cluster_security_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 [`DeleteClusterSecurityGroup`](crate::operation::delete_cluster_security_group::builders::DeleteClusterSecurityGroupFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`cluster_security_group_name(impl Into<String>)`](crate::operation::delete_cluster_security_group::builders::DeleteClusterSecurityGroupFluentBuilder::cluster_security_group_name) / [`set_cluster_security_group_name(Option<String>)`](crate::operation::delete_cluster_security_group::builders::DeleteClusterSecurityGroupFluentBuilder::set_cluster_security_group_name):<br>required: **true**<br><p>The name of the cluster security group to be deleted.</p><br>
7    /// - On success, responds with [`DeleteClusterSecurityGroupOutput`](crate::operation::delete_cluster_security_group::DeleteClusterSecurityGroupOutput)
8    /// - On failure, responds with [`SdkError<DeleteClusterSecurityGroupError>`](crate::operation::delete_cluster_security_group::DeleteClusterSecurityGroupError)
9    pub fn delete_cluster_security_group(
10        &self,
11    ) -> crate::operation::delete_cluster_security_group::builders::DeleteClusterSecurityGroupFluentBuilder {
12        crate::operation::delete_cluster_security_group::builders::DeleteClusterSecurityGroupFluentBuilder::new(self.handle.clone())
13    }
14}