#[non_exhaustive]pub struct AssociateDomainInput {
pub fleet_arn: Option<String>,
pub domain_name: Option<String>,
pub display_name: Option<String>,
pub acm_certificate_arn: Option<String>,
}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.fleet_arn: Option<String>The Amazon Resource Name (ARN) of the fleet.
domain_name: Option<String>The fully qualified domain name (FQDN).
display_name: Option<String>The name to display.
acm_certificate_arn: Option<String>The ARN of an issued ACM certificate that is valid for the domain being associated.
Implementations§
source§impl AssociateDomainInput
impl AssociateDomainInput
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The fully qualified domain name (FQDN).
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
The name to display.
sourcepub fn acm_certificate_arn(&self) -> Option<&str>
pub fn acm_certificate_arn(&self) -> Option<&str>
The ARN of an issued ACM certificate that is valid for the domain being associated.
source§impl AssociateDomainInput
impl AssociateDomainInput
sourcepub fn builder() -> AssociateDomainInputBuilder
pub fn builder() -> AssociateDomainInputBuilder
Creates a new builder-style object to manufacture AssociateDomainInput.
Trait Implementations§
source§impl Clone for AssociateDomainInput
impl Clone for AssociateDomainInput
source§fn clone(&self) -> AssociateDomainInput
fn clone(&self) -> AssociateDomainInput
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 AssociateDomainInput
impl Debug for AssociateDomainInput
source§impl PartialEq for AssociateDomainInput
impl PartialEq for AssociateDomainInput
source§fn eq(&self, other: &AssociateDomainInput) -> bool
fn eq(&self, other: &AssociateDomainInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AssociateDomainInput
Auto Trait Implementations§
impl RefUnwindSafe for AssociateDomainInput
impl Send for AssociateDomainInput
impl Sync for AssociateDomainInput
impl Unpin for AssociateDomainInput
impl UnwindSafe for AssociateDomainInput
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.