Struct rusoto_ses::SetIdentityDkimEnabledRequest[][src]

pub struct SetIdentityDkimEnabledRequest {
    pub dkim_enabled: bool,
    pub identity: String,
}

Represents a request to enable or disable Amazon SES Easy DKIM signing for an identity. For more information about setting up Easy DKIM, see the Amazon SES Developer Guide.

Fields

Sets whether DKIM signing is enabled for an identity. Set to true to enable DKIM signing for this identity; false to disable it.

The identity for which DKIM signing should be enabled or disabled.

Trait Implementations

impl Default for SetIdentityDkimEnabledRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for SetIdentityDkimEnabledRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for SetIdentityDkimEnabledRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SetIdentityDkimEnabledRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations