[][src]Struct rusoto_ses::EventDestination

pub struct EventDestination {
    pub cloud_watch_destination: Option<CloudWatchDestination>,
    pub enabled: Option<bool>,
    pub kinesis_firehose_destination: Option<KinesisFirehoseDestination>,
    pub matching_event_types: Vec<String>,
    pub name: String,
    pub sns_destination: Option<SNSDestination>,
}

Contains information about the event destination that the specified email sending events will be published to.

When you create or update an event destination, you must provide one, and only one, destination. The destination can be Amazon CloudWatch, Amazon Kinesis Firehose or Amazon Simple Notification Service (Amazon SNS).

Event destinations are associated with configuration sets, which enable you to publish email sending events to Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS). For information about using configuration sets, see the Amazon SES Developer Guide.

Fields

cloud_watch_destination: Option<CloudWatchDestination>

An object that contains the names, default values, and sources of the dimensions associated with an Amazon CloudWatch event destination.

enabled: Option<bool>

Sets whether Amazon SES publishes events to this destination when you send an email with the associated configuration set. Set to true to enable publishing to this destination; set to false to prevent publishing to this destination. The default value is false.

kinesis_firehose_destination: Option<KinesisFirehoseDestination>

An object that contains the delivery stream ARN and the IAM role ARN associated with an Amazon Kinesis Firehose event destination.

matching_event_types: Vec<String>

The type of email sending events to publish to the event destination.

name: String

The name of the event destination. The name must:

  • This value can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).

  • Contain less than 64 characters.

sns_destination: Option<SNSDestination>

An object that contains the topic ARN associated with an Amazon Simple Notification Service (Amazon SNS) event destination.

Trait Implementations

impl Clone for EventDestination[src]

impl Debug for EventDestination[src]

impl Default for EventDestination[src]

impl PartialEq<EventDestination> for EventDestination[src]

impl StructuralPartialEq for EventDestination[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.