Struct aws_sdk_acm::model::DomainValidationOption
source · #[non_exhaustive]pub struct DomainValidationOption { /* private fields */ }
Expand description
Contains information about the domain names that you want ACM to use to send you emails that enable you to validate domain ownership.
Implementations§
source§impl DomainValidationOption
impl DomainValidationOption
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
A fully qualified domain name (FQDN) in the certificate request.
sourcepub fn validation_domain(&self) -> Option<&str>
pub fn validation_domain(&self) -> Option<&str>
The domain name that you want ACM to use to send you validation emails. This domain name is the suffix of the email addresses that you want ACM to use. This must be the same as the DomainName
value or a superdomain of the DomainName
value. For example, if you request a certificate for testing.example.com
, you can specify example.com
for this value. In that case, ACM sends domain validation emails to the following five addresses:
-
admin@example.com
-
administrator@example.com
-
hostmaster@example.com
-
postmaster@example.com
-
webmaster@example.com
source§impl DomainValidationOption
impl DomainValidationOption
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DomainValidationOption
.
Trait Implementations§
source§impl Clone for DomainValidationOption
impl Clone for DomainValidationOption
source§fn clone(&self) -> DomainValidationOption
fn clone(&self) -> DomainValidationOption
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DomainValidationOption
impl Debug for DomainValidationOption
source§impl PartialEq<DomainValidationOption> for DomainValidationOption
impl PartialEq<DomainValidationOption> for DomainValidationOption
source§fn eq(&self, other: &DomainValidationOption) -> bool
fn eq(&self, other: &DomainValidationOption) -> bool
self
and other
values to be equal, and is used
by ==
.