#[non_exhaustive]pub struct CertificateAssociationBuilder { /* private fields */ }Expand description
A builder for CertificateAssociation.
Implementations§
source§impl CertificateAssociationBuilder
impl CertificateAssociationBuilder
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 for the certificate 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 for the certificate association.
sourcepub fn get_custom_domain_name(&self) -> &Option<String>
pub fn get_custom_domain_name(&self) -> &Option<String>
The custom domain name for the certificate association.
sourcepub fn cluster_identifier(self, input: impl Into<String>) -> Self
pub fn cluster_identifier(self, input: impl Into<String>) -> Self
The cluster identifier for the certificate association.
sourcepub fn set_cluster_identifier(self, input: Option<String>) -> Self
pub fn set_cluster_identifier(self, input: Option<String>) -> Self
The cluster identifier for the certificate association.
sourcepub fn get_cluster_identifier(&self) -> &Option<String>
pub fn get_cluster_identifier(&self) -> &Option<String>
The cluster identifier for the certificate association.
sourcepub fn build(self) -> CertificateAssociation
pub fn build(self) -> CertificateAssociation
Consumes the builder and constructs a CertificateAssociation.
Trait Implementations§
source§impl Clone for CertificateAssociationBuilder
impl Clone for CertificateAssociationBuilder
source§fn clone(&self) -> CertificateAssociationBuilder
fn clone(&self) -> CertificateAssociationBuilder
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 Default for CertificateAssociationBuilder
impl Default for CertificateAssociationBuilder
source§fn default() -> CertificateAssociationBuilder
fn default() -> CertificateAssociationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CertificateAssociationBuilder
impl PartialEq for CertificateAssociationBuilder
source§fn eq(&self, other: &CertificateAssociationBuilder) -> bool
fn eq(&self, other: &CertificateAssociationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CertificateAssociationBuilder
Auto Trait Implementations§
impl Freeze for CertificateAssociationBuilder
impl RefUnwindSafe for CertificateAssociationBuilder
impl Send for CertificateAssociationBuilder
impl Sync for CertificateAssociationBuilder
impl Unpin for CertificateAssociationBuilder
impl UnwindSafe for CertificateAssociationBuilder
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>
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.