Struct aws_sdk_redshift::operation::modify_custom_domain_association::builders::ModifyCustomDomainAssociationOutputBuilder
source · #[non_exhaustive]pub struct ModifyCustomDomainAssociationOutputBuilder { /* private fields */ }
Expand description
A builder for ModifyCustomDomainAssociationOutput
.
Implementations§
source§impl ModifyCustomDomainAssociationOutputBuilder
impl ModifyCustomDomainAssociationOutputBuilder
sourcepub fn custom_domain_name(self, input: impl Into<String>) -> Self
pub fn custom_domain_name(self, input: impl Into<String>) -> Self
The custom domain name associated with the result for the changed custom domain association.
sourcepub fn set_custom_domain_name(self, input: Option<String>) -> Self
pub fn set_custom_domain_name(self, input: Option<String>) -> Self
The custom domain name associated with the result for the changed custom domain association.
sourcepub fn get_custom_domain_name(&self) -> &Option<String>
pub fn get_custom_domain_name(&self) -> &Option<String>
The custom domain name associated with the result for the changed custom domain association.
sourcepub fn custom_domain_certificate_arn(self, input: impl Into<String>) -> Self
pub fn custom_domain_certificate_arn(self, input: impl Into<String>) -> Self
The certificate Amazon Resource Name (ARN) associated with the result for the changed custom domain association.
sourcepub fn set_custom_domain_certificate_arn(self, input: Option<String>) -> Self
pub fn set_custom_domain_certificate_arn(self, input: Option<String>) -> Self
The certificate Amazon Resource Name (ARN) associated with the result for the changed custom domain association.
sourcepub fn get_custom_domain_certificate_arn(&self) -> &Option<String>
pub fn get_custom_domain_certificate_arn(&self) -> &Option<String>
The certificate Amazon Resource Name (ARN) associated with the result for the changed custom domain association.
sourcepub fn cluster_identifier(self, input: impl Into<String>) -> Self
pub fn cluster_identifier(self, input: impl Into<String>) -> Self
The identifier of the cluster associated with the result for the changed custom domain association.
sourcepub fn set_cluster_identifier(self, input: Option<String>) -> Self
pub fn set_cluster_identifier(self, input: Option<String>) -> Self
The identifier of the cluster associated with the result for the changed custom domain association.
sourcepub fn get_cluster_identifier(&self) -> &Option<String>
pub fn get_cluster_identifier(&self) -> &Option<String>
The identifier of the cluster associated with the result for the changed custom domain association.
sourcepub fn custom_domain_cert_expiry_time(self, input: impl Into<String>) -> Self
pub fn custom_domain_cert_expiry_time(self, input: impl Into<String>) -> Self
The certificate expiration time associated with the result for the changed custom domain association.
sourcepub fn set_custom_domain_cert_expiry_time(self, input: Option<String>) -> Self
pub fn set_custom_domain_cert_expiry_time(self, input: Option<String>) -> Self
The certificate expiration time associated with the result for the changed custom domain association.
sourcepub fn get_custom_domain_cert_expiry_time(&self) -> &Option<String>
pub fn get_custom_domain_cert_expiry_time(&self) -> &Option<String>
The certificate expiration time associated with the result for the changed custom domain association.
sourcepub fn build(self) -> ModifyCustomDomainAssociationOutput
pub fn build(self) -> ModifyCustomDomainAssociationOutput
Consumes the builder and constructs a ModifyCustomDomainAssociationOutput
.
Trait Implementations§
source§impl Clone for ModifyCustomDomainAssociationOutputBuilder
impl Clone for ModifyCustomDomainAssociationOutputBuilder
source§fn clone(&self) -> ModifyCustomDomainAssociationOutputBuilder
fn clone(&self) -> ModifyCustomDomainAssociationOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ModifyCustomDomainAssociationOutputBuilder
impl Default for ModifyCustomDomainAssociationOutputBuilder
source§fn default() -> ModifyCustomDomainAssociationOutputBuilder
fn default() -> ModifyCustomDomainAssociationOutputBuilder
source§impl PartialEq for ModifyCustomDomainAssociationOutputBuilder
impl PartialEq for ModifyCustomDomainAssociationOutputBuilder
source§fn eq(&self, other: &ModifyCustomDomainAssociationOutputBuilder) -> bool
fn eq(&self, other: &ModifyCustomDomainAssociationOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyCustomDomainAssociationOutputBuilder
Auto Trait Implementations§
impl Freeze for ModifyCustomDomainAssociationOutputBuilder
impl RefUnwindSafe for ModifyCustomDomainAssociationOutputBuilder
impl Send for ModifyCustomDomainAssociationOutputBuilder
impl Sync for ModifyCustomDomainAssociationOutputBuilder
impl Unpin for ModifyCustomDomainAssociationOutputBuilder
impl UnwindSafe for ModifyCustomDomainAssociationOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more