You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::PinpointEmail::Types::CreateConfigurationSetEventDestinationRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateConfigurationSetEventDestinationRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  configuration_set_name: "ConfigurationSetName", # required
  event_destination_name: "EventDestinationName", # required
  event_destination: { # required
    enabled: false,
    matching_event_types: ["SEND"], # accepts SEND, REJECT, BOUNCE, COMPLAINT, DELIVERY, OPEN, CLICK, RENDERING_FAILURE
    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: "MESSAGE_TAG", # required, accepts MESSAGE_TAG, EMAIL_HEADER, LINK_TAG
          default_dimension_value: "DefaultDimensionValue", # required
        },
      ],
    },
    sns_destination: {
      topic_arn: "AmazonResourceName", # required
    },
    pinpoint_destination: {
      application_arn: "AmazonResourceName",
    },
  },
}

A request to add an event destination to a configuration set.

Instance Attribute Summary collapse

Instance Attribute Details

#configuration_set_nameString

The name of the configuration set that you want to add an event destination to.

Returns:

  • (String)

    The name of the configuration set that you want to add an event destination to.

#event_destinationTypes::EventDestinationDefinition

An object that defines the event destination.

Returns:

#event_destination_nameString

A name that identifies the event destination within the configuration set.

Returns:

  • (String)

    A name that identifies the event destination within the configuration set.