[][src]Struct rusoto_sesv2::DkimSigningAttributes

pub struct DkimSigningAttributes {
    pub domain_signing_private_key: String,
    pub domain_signing_selector: String,
}

An object that contains information about the tokens used for setting up Bring Your Own DKIM (BYODKIM).

Fields

domain_signing_private_key: String

A private key that's used to generate a DKIM signature.

The private key must use 1024-bit RSA encryption, and must be encoded using base64 encoding.

domain_signing_selector: String

A string that's used to identify a public key in the DNS configuration for a domain.

Trait Implementations

impl Clone for DkimSigningAttributes[src]

impl Debug for DkimSigningAttributes[src]

impl Default for DkimSigningAttributes[src]

impl PartialEq<DkimSigningAttributes> for DkimSigningAttributes[src]

impl Serialize for DkimSigningAttributes[src]

impl StructuralPartialEq for DkimSigningAttributes[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, 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> Sealed<T> for T where
    T: ?Sized

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.