Struct aws_sdk_ses::types::builders::IdentityDkimAttributesBuilder
source · #[non_exhaustive]pub struct IdentityDkimAttributesBuilder { /* private fields */ }Expand description
A builder for IdentityDkimAttributes.
Implementations§
source§impl IdentityDkimAttributesBuilder
impl IdentityDkimAttributesBuilder
sourcepub fn dkim_enabled(self, input: bool) -> Self
pub fn dkim_enabled(self, input: bool) -> Self
Is true if DKIM signing is enabled for email sent from the identity. It's false otherwise. The default value is true.
This field is required.sourcepub fn set_dkim_enabled(self, input: Option<bool>) -> Self
pub fn set_dkim_enabled(self, input: Option<bool>) -> Self
Is true if DKIM signing is enabled for email sent from the identity. It's false otherwise. The default value is true.
sourcepub fn get_dkim_enabled(&self) -> &Option<bool>
pub fn get_dkim_enabled(&self) -> &Option<bool>
Is true if DKIM signing is enabled for email sent from the identity. It's false otherwise. The default value is true.
sourcepub fn dkim_verification_status(self, input: VerificationStatus) -> Self
pub fn dkim_verification_status(self, input: VerificationStatus) -> Self
Describes whether Amazon SES has successfully verified the DKIM DNS records (tokens) published in the domain name's DNS. (This only applies to domain identities, not email address identities.)
This field is required.sourcepub fn set_dkim_verification_status(
self,
input: Option<VerificationStatus>
) -> Self
pub fn set_dkim_verification_status( self, input: Option<VerificationStatus> ) -> Self
Describes whether Amazon SES has successfully verified the DKIM DNS records (tokens) published in the domain name's DNS. (This only applies to domain identities, not email address identities.)
sourcepub fn get_dkim_verification_status(&self) -> &Option<VerificationStatus>
pub fn get_dkim_verification_status(&self) -> &Option<VerificationStatus>
Describes whether Amazon SES has successfully verified the DKIM DNS records (tokens) published in the domain name's DNS. (This only applies to domain identities, not email address identities.)
sourcepub fn dkim_tokens(self, input: impl Into<String>) -> Self
pub fn dkim_tokens(self, input: impl Into<String>) -> Self
Appends an item to dkim_tokens.
To override the contents of this collection use set_dkim_tokens.
A set of character strings that represent the domain's identity. Using these tokens, you need to create DNS CNAME records that point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services eventually detects that you've updated your DNS records. This detection process might take up to 72 hours. After successful detection, Amazon SES is able to DKIM-sign email originating from that domain. (This only applies to domain identities, not email address identities.)
For more information about creating DNS records using DKIM tokens, see the Amazon SES Developer Guide.
sourcepub fn set_dkim_tokens(self, input: Option<Vec<String>>) -> Self
pub fn set_dkim_tokens(self, input: Option<Vec<String>>) -> Self
A set of character strings that represent the domain's identity. Using these tokens, you need to create DNS CNAME records that point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services eventually detects that you've updated your DNS records. This detection process might take up to 72 hours. After successful detection, Amazon SES is able to DKIM-sign email originating from that domain. (This only applies to domain identities, not email address identities.)
For more information about creating DNS records using DKIM tokens, see the Amazon SES Developer Guide.
sourcepub fn get_dkim_tokens(&self) -> &Option<Vec<String>>
pub fn get_dkim_tokens(&self) -> &Option<Vec<String>>
A set of character strings that represent the domain's identity. Using these tokens, you need to create DNS CNAME records that point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services eventually detects that you've updated your DNS records. This detection process might take up to 72 hours. After successful detection, Amazon SES is able to DKIM-sign email originating from that domain. (This only applies to domain identities, not email address identities.)
For more information about creating DNS records using DKIM tokens, see the Amazon SES Developer Guide.
sourcepub fn build(self) -> Result<IdentityDkimAttributes, BuildError>
pub fn build(self) -> Result<IdentityDkimAttributes, BuildError>
Consumes the builder and constructs a IdentityDkimAttributes.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for IdentityDkimAttributesBuilder
impl Clone for IdentityDkimAttributesBuilder
source§fn clone(&self) -> IdentityDkimAttributesBuilder
fn clone(&self) -> IdentityDkimAttributesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for IdentityDkimAttributesBuilder
impl Default for IdentityDkimAttributesBuilder
source§fn default() -> IdentityDkimAttributesBuilder
fn default() -> IdentityDkimAttributesBuilder
source§impl PartialEq for IdentityDkimAttributesBuilder
impl PartialEq for IdentityDkimAttributesBuilder
source§fn eq(&self, other: &IdentityDkimAttributesBuilder) -> bool
fn eq(&self, other: &IdentityDkimAttributesBuilder) -> bool
self and other values to be equal, and is used
by ==.