class Aws::SES::Types::UpdateConfigurationSetEventDestinationRequest

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

@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
        },
      },
    }

@!attribute [rw] configuration_set_name

The name of the configuration set that contains the event
destination that you want to update.
@return [String]

@!attribute [rw] event_destination

The event destination object that you want to apply to the specified
configuration set.
@return [Types::EventDestination]

@see docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/UpdateConfigurationSetEventDestinationRequest AWS API Documentation

Constants

SENSITIVE