Class: Aws::SES::Types::KinesisFirehoseDestination

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ses/types.rb

Overview

Note:

When making an API call, you may pass KinesisFirehoseDestination data as a hash:

{
  iam_role_arn: "AmazonResourceName", # required
  delivery_stream_arn: "AmazonResourceName", # required
}

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].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html

Instance Attribute Summary collapse

Instance Attribute Details

#delivery_stream_arnString

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

Returns:

  • (String)


2315
2316
2317
2318
2319
# File 'lib/aws-sdk-ses/types.rb', line 2315

class KinesisFirehoseDestination < Struct.new(
  :iam_role_arn,
  :delivery_stream_arn)
  include Aws::Structure
end

#iam_role_arnString

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

Returns:

  • (String)


2315
2316
2317
2318
2319
# File 'lib/aws-sdk-ses/types.rb', line 2315

class KinesisFirehoseDestination < Struct.new(
  :iam_role_arn,
  :delivery_stream_arn)
  include Aws::Structure
end