aws_sdk_redshift/client/modify_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 [`ModifyCustomDomainAssociation`](crate::operation::modify_custom_domain_association::builders::ModifyCustomDomainAssociationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`custom_domain_name(impl Into<String>)`](crate::operation::modify_custom_domain_association::builders::ModifyCustomDomainAssociationFluentBuilder::custom_domain_name) / [`set_custom_domain_name(Option<String>)`](crate::operation::modify_custom_domain_association::builders::ModifyCustomDomainAssociationFluentBuilder::set_custom_domain_name):<br>required: **true**<br><p>The custom domain name for a changed custom domain association.</p><br>
7 /// - [`custom_domain_certificate_arn(impl Into<String>)`](crate::operation::modify_custom_domain_association::builders::ModifyCustomDomainAssociationFluentBuilder::custom_domain_certificate_arn) / [`set_custom_domain_certificate_arn(Option<String>)`](crate::operation::modify_custom_domain_association::builders::ModifyCustomDomainAssociationFluentBuilder::set_custom_domain_certificate_arn):<br>required: **true**<br><p>The certificate Amazon Resource Name (ARN) for the changed custom domain association.</p><br>
8 /// - [`cluster_identifier(impl Into<String>)`](crate::operation::modify_custom_domain_association::builders::ModifyCustomDomainAssociationFluentBuilder::cluster_identifier) / [`set_cluster_identifier(Option<String>)`](crate::operation::modify_custom_domain_association::builders::ModifyCustomDomainAssociationFluentBuilder::set_cluster_identifier):<br>required: **true**<br><p>The identifier of the cluster to change a custom domain association for.</p><br>
9 /// - On success, responds with [`ModifyCustomDomainAssociationOutput`](crate::operation::modify_custom_domain_association::ModifyCustomDomainAssociationOutput) with field(s):
10 /// - [`custom_domain_name(Option<String>)`](crate::operation::modify_custom_domain_association::ModifyCustomDomainAssociationOutput::custom_domain_name): <p>The custom domain name associated with the result for the changed custom domain association.</p>
11 /// - [`custom_domain_certificate_arn(Option<String>)`](crate::operation::modify_custom_domain_association::ModifyCustomDomainAssociationOutput::custom_domain_certificate_arn): <p>The certificate Amazon Resource Name (ARN) associated with the result for the changed custom domain association.</p>
12 /// - [`cluster_identifier(Option<String>)`](crate::operation::modify_custom_domain_association::ModifyCustomDomainAssociationOutput::cluster_identifier): <p>The identifier of the cluster associated with the result for the changed custom domain association.</p>
13 /// - [`custom_domain_cert_expiry_time(Option<String>)`](crate::operation::modify_custom_domain_association::ModifyCustomDomainAssociationOutput::custom_domain_cert_expiry_time): <p>The certificate expiration time associated with the result for the changed custom domain association.</p>
14 /// - On failure, responds with [`SdkError<ModifyCustomDomainAssociationError>`](crate::operation::modify_custom_domain_association::ModifyCustomDomainAssociationError)
15 pub fn modify_custom_domain_association(
16 &self,
17 ) -> crate::operation::modify_custom_domain_association::builders::ModifyCustomDomainAssociationFluentBuilder {
18 crate::operation::modify_custom_domain_association::builders::ModifyCustomDomainAssociationFluentBuilder::new(self.handle.clone())
19 }
20}