Struct rusoto_ses::KinesisFirehoseDestination[][src]

pub struct KinesisFirehoseDestination {
    pub delivery_stream_arn: String,
    pub iam_role_arn: String,
}

Contains the delivery stream ARN and the IAM role ARN associated with an Amazon Kinesis Firehose event destination.

Event destinations, such as Amazon Kinesis Firehose, are associated with configuration sets, which enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

Fields

The ARN of the Amazon Kinesis Firehose stream that email sending events should be published to.

The ARN of the IAM role under which Amazon SES publishes email sending events to the Amazon Kinesis Firehose stream.

Trait Implementations

impl Default for KinesisFirehoseDestination
[src]

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

impl Debug for KinesisFirehoseDestination
[src]

Formats the value using the given formatter. Read more

impl Clone for KinesisFirehoseDestination
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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