aws_sdk_redshiftserverless/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    ///   - [`workgroup_name(impl Into<String>)`](crate::operation::delete_custom_domain_association::builders::DeleteCustomDomainAssociationFluentBuilder::workgroup_name) / [`set_workgroup_name(Option<String>)`](crate::operation::delete_custom_domain_association::builders::DeleteCustomDomainAssociationFluentBuilder::set_workgroup_name):<br>required: **true**<br><p>The name of the workgroup associated with the database.</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 associated with the workgroup.</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}