Configures an SES event destination to send data to a Kinesis stream based on specific email event types.

Terraform Template

resource "aws_ses_event_destination" "kinesis" {
  configuration_set_name = "aws_ses_configuration_set.example.name"
  enabled = true

  kinesis_destination {
    role_arn = "aws_iam_role.example.arn"
    stream_arn = "aws_kinesis_firehose_delivery_stream.example.arn"
  }
  matching_types = ["bounce", "send"]
  name = "event-destination-kinesis"
}