aws_sdk_redshift/client/delete_custom_domain_association.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 [`DeleteCustomDomainAssociation`](crate::operation::delete_custom_domain_association::builders::DeleteCustomDomainAssociationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`cluster_identifier(impl Into<String>)`](crate::operation::delete_custom_domain_association::builders::DeleteCustomDomainAssociationFluentBuilder::cluster_identifier) / [`set_cluster_identifier(Option<String>)`](crate::operation::delete_custom_domain_association::builders::DeleteCustomDomainAssociationFluentBuilder::set_cluster_identifier):<br>required: **true**<br><p>The identifier of the cluster to delete a custom domain association for.</p><br>
7 /// - [`custom_domain_name(impl Into<String>)`](crate::operation::delete_custom_domain_association::builders::DeleteCustomDomainAssociationFluentBuilder::custom_domain_name) / [`set_custom_domain_name(Option<String>)`](crate::operation::delete_custom_domain_association::builders::DeleteCustomDomainAssociationFluentBuilder::set_custom_domain_name):<br>required: **true**<br><p>The custom domain name for the custom domain association.</p><br>
8 /// - On success, responds with [`DeleteCustomDomainAssociationOutput`](crate::operation::delete_custom_domain_association::DeleteCustomDomainAssociationOutput)
9 /// - On failure, responds with [`SdkError<DeleteCustomDomainAssociationError>`](crate::operation::delete_custom_domain_association::DeleteCustomDomainAssociationError)
10 pub fn delete_custom_domain_association(
11 &self,
12 ) -> crate::operation::delete_custom_domain_association::builders::DeleteCustomDomainAssociationFluentBuilder {
13 crate::operation::delete_custom_domain_association::builders::DeleteCustomDomainAssociationFluentBuilder::new(self.handle.clone())
14 }
15}