#[non_exhaustive]pub struct CreateEmailIdentityInput { /* private fields */ }Expand description
A request to begin the verification process for an email identity (an email address or domain).
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.
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.
source§impl CreateEmailIdentityInput
impl CreateEmailIdentityInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateEmailIdentity, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<CreateEmailIdentity, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateEmailIdentity>
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<CreateEmailIdentityInput> for CreateEmailIdentityInput
impl PartialEq<CreateEmailIdentityInput> 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 ==.