Class: Aws::SES::Types::UpdateConfigurationSetEventDestinationRequest

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 UpdateConfigurationSetEventDestinationRequest data as a hash:

{
  configuration_set_name: "ConfigurationSetName", # required
  event_destination: { # required
    name: "EventDestinationName", # required
    enabled: false,
    matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery, open, click, renderingFailure
    kinesis_firehose_destination: {
      iam_role_arn: "AmazonResourceName", # required
      delivery_stream_arn: "AmazonResourceName", # required
    },
    cloud_watch_destination: {
      dimension_configurations: [ # required
        {
          dimension_name: "DimensionName", # required
          dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
          default_dimension_value: "DefaultDimensionValue", # required
        },
      ],
    },
    sns_destination: {
      topic_arn: "AmazonResourceName", # required
    },
  },
}

Represents a request to update the event destination of a configuration set. Configuration sets 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

#configuration_set_nameString

The name of the configuration set that contains the event destination that you want to update.

Returns:

  • (String)


5328
5329
5330
5331
5332
# File 'lib/aws-sdk-ses/types.rb', line 5328

class UpdateConfigurationSetEventDestinationRequest < Struct.new(
  :configuration_set_name,
  :event_destination)
  include Aws::Structure
end

#event_destinationTypes::EventDestination

The event destination object that you want to apply to the specified configuration set.



5328
5329
5330
5331
5332
# File 'lib/aws-sdk-ses/types.rb', line 5328

class UpdateConfigurationSetEventDestinationRequest < Struct.new(
  :configuration_set_name,
  :event_destination)
  include Aws::Structure
end