Struct aws_sdk_redshift::operation::modify_custom_domain_association::ModifyCustomDomainAssociationOutput
source · #[non_exhaustive]pub struct ModifyCustomDomainAssociationOutput {
pub custom_domain_name: Option<String>,
pub custom_domain_certificate_arn: Option<String>,
pub cluster_identifier: Option<String>,
pub custom_domain_cert_expiry_time: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.custom_domain_name: Option<String>
The custom domain name associated with the result for the changed custom domain association.
custom_domain_certificate_arn: Option<String>
The certificate Amazon Resource Name (ARN) associated with the result for the changed custom domain association.
cluster_identifier: Option<String>
The identifier of the cluster associated with the result for the changed custom domain association.
custom_domain_cert_expiry_time: Option<String>
The certificate expiration time associated with the result for the changed custom domain association.
Implementations§
source§impl ModifyCustomDomainAssociationOutput
impl ModifyCustomDomainAssociationOutput
sourcepub fn custom_domain_name(&self) -> Option<&str>
pub fn custom_domain_name(&self) -> Option<&str>
The custom domain name associated with the result for the changed custom domain association.
sourcepub fn custom_domain_certificate_arn(&self) -> Option<&str>
pub fn custom_domain_certificate_arn(&self) -> Option<&str>
The certificate Amazon Resource Name (ARN) associated with the result for the changed custom domain association.
sourcepub fn cluster_identifier(&self) -> Option<&str>
pub fn cluster_identifier(&self) -> Option<&str>
The identifier of the cluster associated with the result for the changed custom domain association.
sourcepub fn custom_domain_cert_expiry_time(&self) -> Option<&str>
pub fn custom_domain_cert_expiry_time(&self) -> Option<&str>
The certificate expiration time associated with the result for the changed custom domain association.
source§impl ModifyCustomDomainAssociationOutput
impl ModifyCustomDomainAssociationOutput
sourcepub fn builder() -> ModifyCustomDomainAssociationOutputBuilder
pub fn builder() -> ModifyCustomDomainAssociationOutputBuilder
Creates a new builder-style object to manufacture ModifyCustomDomainAssociationOutput
.
Trait Implementations§
source§impl Clone for ModifyCustomDomainAssociationOutput
impl Clone for ModifyCustomDomainAssociationOutput
source§fn clone(&self) -> ModifyCustomDomainAssociationOutput
fn clone(&self) -> ModifyCustomDomainAssociationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ModifyCustomDomainAssociationOutput
impl PartialEq for ModifyCustomDomainAssociationOutput
source§fn eq(&self, other: &ModifyCustomDomainAssociationOutput) -> bool
fn eq(&self, other: &ModifyCustomDomainAssociationOutput) -> bool
self
and other
values to be equal, and is used by ==
.source§impl RequestId for ModifyCustomDomainAssociationOutput
impl RequestId for ModifyCustomDomainAssociationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for ModifyCustomDomainAssociationOutput
Auto Trait Implementations§
impl Freeze for ModifyCustomDomainAssociationOutput
impl RefUnwindSafe for ModifyCustomDomainAssociationOutput
impl Send for ModifyCustomDomainAssociationOutput
impl Sync for ModifyCustomDomainAssociationOutput
impl Unpin for ModifyCustomDomainAssociationOutput
impl UnwindSafe for ModifyCustomDomainAssociationOutput
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