[][src]Struct rusoto_sesv2::CreateEmailIdentityRequest

pub struct CreateEmailIdentityRequest {
    pub dkim_signing_attributes: Option<DkimSigningAttributes>,
    pub email_identity: String,
    pub tags: Option<Vec<Tag>>,
}

A request to begin the verification process for an email identity (an email address or domain).

Fields

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, as opposed to the default method, Easy DKIM.

You can only specify this object if the email identity is a domain, as opposed to an address.

email_identity: String

The email address or domain that you want to verify.

tags: Option<Vec<Tag>>

An array of objects that define the tags (keys and values) that you want to associate with the email identity.

Trait Implementations

impl Clone for CreateEmailIdentityRequest[src]

impl Debug for CreateEmailIdentityRequest[src]

impl Default for CreateEmailIdentityRequest[src]

impl PartialEq<CreateEmailIdentityRequest> for CreateEmailIdentityRequest[src]

impl Serialize for CreateEmailIdentityRequest[src]

impl StructuralPartialEq for CreateEmailIdentityRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.