Struct rusoto_ses::UpdateConfigurationSetEventDestinationRequest[][src]

pub struct UpdateConfigurationSetEventDestinationRequest {
    pub configuration_set_name: String,
    pub event_destination: EventDestination,
}

Represents a request to update the event destination of a configuration set. Configuration sets enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

Fields

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

The event destination object that you want to apply to the specified configuration set.

Trait Implementations

impl Default for UpdateConfigurationSetEventDestinationRequest
[src]

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

impl Debug for UpdateConfigurationSetEventDestinationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateConfigurationSetEventDestinationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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