Struct aws_sdk_sesv2::types::KinesisFirehoseDestination
source · #[non_exhaustive]pub struct KinesisFirehoseDestination {
pub iam_role_arn: String,
pub delivery_stream_arn: String,
}Expand description
An object that defines an Amazon Kinesis Data Firehose destination for email events. You can use Amazon Kinesis Data Firehose to stream data to other services, such as Amazon S3 and Amazon Redshift.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.iam_role_arn: StringThe Amazon Resource Name (ARN) of the IAM role that the Amazon SES API v2 uses to send email events to the Amazon Kinesis Data Firehose stream.
delivery_stream_arn: StringThe Amazon Resource Name (ARN) of the Amazon Kinesis Data Firehose stream that the Amazon SES API v2 sends email events to.
Implementations§
source§impl KinesisFirehoseDestination
impl KinesisFirehoseDestination
sourcepub fn iam_role_arn(&self) -> &str
pub fn iam_role_arn(&self) -> &str
The Amazon Resource Name (ARN) of the IAM role that the Amazon SES API v2 uses to send email events to the Amazon Kinesis Data Firehose stream.
sourcepub fn delivery_stream_arn(&self) -> &str
pub fn delivery_stream_arn(&self) -> &str
The Amazon Resource Name (ARN) of the Amazon Kinesis Data Firehose stream that the Amazon SES API v2 sends email events to.
source§impl KinesisFirehoseDestination
impl KinesisFirehoseDestination
sourcepub fn builder() -> KinesisFirehoseDestinationBuilder
pub fn builder() -> KinesisFirehoseDestinationBuilder
Creates a new builder-style object to manufacture KinesisFirehoseDestination.
Trait Implementations§
source§impl Clone for KinesisFirehoseDestination
impl Clone for KinesisFirehoseDestination
source§fn clone(&self) -> KinesisFirehoseDestination
fn clone(&self) -> KinesisFirehoseDestination
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for KinesisFirehoseDestination
impl Debug for KinesisFirehoseDestination
source§impl PartialEq for KinesisFirehoseDestination
impl PartialEq for KinesisFirehoseDestination
source§fn eq(&self, other: &KinesisFirehoseDestination) -> bool
fn eq(&self, other: &KinesisFirehoseDestination) -> bool
self and other values to be equal, and is used
by ==.