Struct rusoto_ses::UpdateConfigurationSetSendingEnabledRequest[][src]

pub struct UpdateConfigurationSetSendingEnabledRequest {
    pub configuration_set_name: String,
    pub enabled: bool,
}

Represents a request to enable or disable the email sending capabilities for a specific configuration set.

Fields

The name of the configuration set that you want to update.

Describes whether email sending is enabled or disabled for the configuration set.

Trait Implementations

impl Default for UpdateConfigurationSetSendingEnabledRequest
[src]

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

impl Debug for UpdateConfigurationSetSendingEnabledRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateConfigurationSetSendingEnabledRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateConfigurationSetSendingEnabledRequest
[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