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]

[src]

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

impl Debug for SetIdentityDkimEnabledRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SetIdentityDkimEnabledRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations