#[non_exhaustive]pub struct CreateEmailIdentityInput {
pub email_identity: Option<String>,
pub tags: Option<Vec<Tag>>,
pub dkim_signing_attributes: Option<DkimSigningAttributes>,
pub configuration_set_name: Option<String>,
}Expand description
A request to begin the verification process for an email identity (an email address or domain).
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.email_identity: Option<String>The email address or domain to verify.
An array of objects that define the tags (keys and values) to associate with the email identity.
dkim_signing_attributes: Option<DkimSigningAttributes>If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM.
You can only specify this object if the email identity is a domain, as opposed to an address.
configuration_set_name: Option<String>The configuration set to use by default when sending from this identity. Note that any configuration set defined in the email sending request takes precedence.
Implementations§
source§impl CreateEmailIdentityInput
impl CreateEmailIdentityInput
sourcepub fn email_identity(&self) -> Option<&str>
pub fn email_identity(&self) -> Option<&str>
The email address or domain to verify.
An array of objects that define the tags (keys and values) to associate with the email identity.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
sourcepub fn dkim_signing_attributes(&self) -> Option<&DkimSigningAttributes>
pub fn dkim_signing_attributes(&self) -> Option<&DkimSigningAttributes>
If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM.
You can only specify this object if the email identity is a domain, as opposed to an address.
sourcepub fn configuration_set_name(&self) -> Option<&str>
pub fn configuration_set_name(&self) -> Option<&str>
The configuration set to use by default when sending from this identity. Note that any configuration set defined in the email sending request takes precedence.
source§impl CreateEmailIdentityInput
impl CreateEmailIdentityInput
sourcepub fn builder() -> CreateEmailIdentityInputBuilder
pub fn builder() -> CreateEmailIdentityInputBuilder
Creates a new builder-style object to manufacture CreateEmailIdentityInput.
Trait Implementations§
source§impl Clone for CreateEmailIdentityInput
impl Clone for CreateEmailIdentityInput
source§fn clone(&self) -> CreateEmailIdentityInput
fn clone(&self) -> CreateEmailIdentityInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateEmailIdentityInput
impl Debug for CreateEmailIdentityInput
source§impl PartialEq for CreateEmailIdentityInput
impl PartialEq for CreateEmailIdentityInput
source§fn eq(&self, other: &CreateEmailIdentityInput) -> bool
fn eq(&self, other: &CreateEmailIdentityInput) -> bool
self and other values to be equal, and is used
by ==.