#[non_exhaustive]pub struct VerifyDomainIdentityOutput { /* private fields */ }Expand description
Returns a TXT record that you must publish to the DNS server of your domain to complete domain verification with Amazon SES.
Implementations§
source§impl VerifyDomainIdentityOutput
impl VerifyDomainIdentityOutput
sourcepub fn verification_token(&self) -> Option<&str>
pub fn verification_token(&self) -> Option<&str>
A TXT record that you must place in the DNS settings of the domain to complete domain verification with Amazon SES.
As Amazon SES searches for the TXT record, the domain's verification status is "Pending". When Amazon SES detects the record, the domain's verification status changes to "Success". If Amazon SES is unable to detect the record within 72 hours, the domain's verification status changes to "Failed." In that case, if you still want to verify the domain, you must restart the verification process from the beginning.
source§impl VerifyDomainIdentityOutput
impl VerifyDomainIdentityOutput
sourcepub fn builder() -> VerifyDomainIdentityOutputBuilder
pub fn builder() -> VerifyDomainIdentityOutputBuilder
Creates a new builder-style object to manufacture VerifyDomainIdentityOutput.
Trait Implementations§
source§impl Clone for VerifyDomainIdentityOutput
impl Clone for VerifyDomainIdentityOutput
source§fn clone(&self) -> VerifyDomainIdentityOutput
fn clone(&self) -> VerifyDomainIdentityOutput
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 VerifyDomainIdentityOutput
impl Debug for VerifyDomainIdentityOutput
source§impl PartialEq<VerifyDomainIdentityOutput> for VerifyDomainIdentityOutput
impl PartialEq<VerifyDomainIdentityOutput> for VerifyDomainIdentityOutput
source§fn eq(&self, other: &VerifyDomainIdentityOutput) -> bool
fn eq(&self, other: &VerifyDomainIdentityOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for VerifyDomainIdentityOutput
impl RequestId for VerifyDomainIdentityOutput
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 VerifyDomainIdentityOutput
Auto Trait Implementations§
impl RefUnwindSafe for VerifyDomainIdentityOutput
impl Send for VerifyDomainIdentityOutput
impl Sync for VerifyDomainIdentityOutput
impl Unpin for VerifyDomainIdentityOutput
impl UnwindSafe for VerifyDomainIdentityOutput
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