#[non_exhaustive]pub struct GetMailDomainOutput { /* private fields */ }
Implementations§
source§impl GetMailDomainOutput
impl GetMailDomainOutput
sourcepub fn records(&self) -> Option<&[DnsRecord]>
pub fn records(&self) -> Option<&[DnsRecord]>
A list of the DNS records that WorkMail recommends adding in your DNS provider for the best user experience. The records configure your domain with DMARC, SPF, DKIM, and direct incoming email traffic to SES. See admin guide for more details.
sourcepub fn is_test_domain(&self) -> bool
pub fn is_test_domain(&self) -> bool
Specifies whether the domain is a test domain provided by WorkMail, or a custom domain.
sourcepub fn is_default(&self) -> bool
pub fn is_default(&self) -> bool
Specifies whether the domain is the default domain for your organization.
sourcepub fn ownership_verification_status(
&self
) -> Option<&DnsRecordVerificationStatus>
pub fn ownership_verification_status( &self ) -> Option<&DnsRecordVerificationStatus>
Indicates the status of the domain ownership verification.
sourcepub fn dkim_verification_status(&self) -> Option<&DnsRecordVerificationStatus>
pub fn dkim_verification_status(&self) -> Option<&DnsRecordVerificationStatus>
Indicates the status of a DKIM verification.
source§impl GetMailDomainOutput
impl GetMailDomainOutput
sourcepub fn builder() -> GetMailDomainOutputBuilder
pub fn builder() -> GetMailDomainOutputBuilder
Creates a new builder-style object to manufacture GetMailDomainOutput
.
Trait Implementations§
source§impl Clone for GetMailDomainOutput
impl Clone for GetMailDomainOutput
source§fn clone(&self) -> GetMailDomainOutput
fn clone(&self) -> GetMailDomainOutput
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 GetMailDomainOutput
impl Debug for GetMailDomainOutput
source§impl PartialEq<GetMailDomainOutput> for GetMailDomainOutput
impl PartialEq<GetMailDomainOutput> for GetMailDomainOutput
source§fn eq(&self, other: &GetMailDomainOutput) -> bool
fn eq(&self, other: &GetMailDomainOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetMailDomainOutput
impl RequestId for GetMailDomainOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetMailDomainOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetMailDomainOutput
impl Send for GetMailDomainOutput
impl Sync for GetMailDomainOutput
impl Unpin for GetMailDomainOutput
impl UnwindSafe for GetMailDomainOutput
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