Struct aws_sdk_redshift::types::CertificateAssociation
source · #[non_exhaustive]pub struct CertificateAssociation {
pub custom_domain_name: Option<String>,
pub cluster_identifier: Option<String>,
}
Expand description
A cluster ID and custom domain name tied to a specific certificate. These are typically returned in a list.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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 for the certificate association.
cluster_identifier: Option<String>
The cluster identifier for the certificate association.
Implementations§
source§impl CertificateAssociation
impl CertificateAssociation
sourcepub fn custom_domain_name(&self) -> Option<&str>
pub fn custom_domain_name(&self) -> Option<&str>
The custom domain name for the certificate association.
sourcepub fn cluster_identifier(&self) -> Option<&str>
pub fn cluster_identifier(&self) -> Option<&str>
The cluster identifier for the certificate association.
source§impl CertificateAssociation
impl CertificateAssociation
sourcepub fn builder() -> CertificateAssociationBuilder
pub fn builder() -> CertificateAssociationBuilder
Creates a new builder-style object to manufacture CertificateAssociation
.
Trait Implementations§
source§impl Clone for CertificateAssociation
impl Clone for CertificateAssociation
source§fn clone(&self) -> CertificateAssociation
fn clone(&self) -> CertificateAssociation
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CertificateAssociation
impl Debug for CertificateAssociation
source§impl PartialEq for CertificateAssociation
impl PartialEq for CertificateAssociation
source§fn eq(&self, other: &CertificateAssociation) -> bool
fn eq(&self, other: &CertificateAssociation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CertificateAssociation
Auto Trait Implementations§
impl RefUnwindSafe for CertificateAssociation
impl Send for CertificateAssociation
impl Sync for CertificateAssociation
impl Unpin for CertificateAssociation
impl UnwindSafe for CertificateAssociation
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.