[][src]Struct rusoto_sesv2::PutEmailIdentityDkimAttributesRequest

pub struct PutEmailIdentityDkimAttributesRequest {
    pub email_identity: String,
    pub signing_enabled: Option<bool>,
}

A request to enable or disable DKIM signing of email that you send from an email identity.

Fields

email_identity: String

The email identity that you want to change the DKIM settings for.

signing_enabled: Option<bool>

Sets the DKIM signing configuration for the identity.

When you set this value true, then the messages that are sent from the identity are signed using DKIM. If you set this value to false, your messages are sent without DKIM signing.

Trait Implementations

impl Clone for PutEmailIdentityDkimAttributesRequest[src]

impl Debug for PutEmailIdentityDkimAttributesRequest[src]

impl Default for PutEmailIdentityDkimAttributesRequest[src]

impl PartialEq<PutEmailIdentityDkimAttributesRequest> for PutEmailIdentityDkimAttributesRequest[src]

impl Serialize for PutEmailIdentityDkimAttributesRequest[src]

impl StructuralPartialEq for PutEmailIdentityDkimAttributesRequest[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, 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.