Struct rusoto_ses::CreateConfigurationSetEventDestinationRequest[][src]

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

Represents a request to create a configuration set event destination. A configuration set event destination, which can be either Amazon CloudWatch or Amazon Kinesis Firehose, describes an AWS service in which Amazon SES publishes the email sending events associated with a configuration set. For information about using configuration sets, see the Amazon SES Developer Guide.

Fields

The name of the configuration set that the event destination should be associated with.

An object that describes the AWS service that email sending event information will be published to.

Trait Implementations

impl Default for CreateConfigurationSetEventDestinationRequest
[src]

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

impl Debug for CreateConfigurationSetEventDestinationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateConfigurationSetEventDestinationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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