#[non_exhaustive]pub struct VerifyDomainIdentityOutput {
pub verification_token: String,
/* 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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.verification_token: StringA 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, to verify the domain, you must restart the verification process from the beginning. The domain's verification status also changes to "Success" when it is DKIM verified.
Implementations§
source§impl VerifyDomainIdentityOutput
impl VerifyDomainIdentityOutput
sourcepub fn verification_token(&self) -> &str
pub fn verification_token(&self) -> &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, to verify the domain, you must restart the verification process from the beginning. The domain's verification status also changes to "Success" when it is DKIM verified.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for VerifyDomainIdentityOutput
impl Debug for VerifyDomainIdentityOutput
source§impl RequestId for VerifyDomainIdentityOutput
impl RequestId for VerifyDomainIdentityOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for VerifyDomainIdentityOutput
Auto Trait Implementations§
impl Freeze for VerifyDomainIdentityOutput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
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>
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 more