You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::SES::Types::CreateConfigurationSetEventDestinationRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::SES::Types::CreateConfigurationSetEventDestinationRequest
 
- Defined in:
- (unknown)
Overview
When passing CreateConfigurationSetEventDestinationRequest as input to an Aws::Client method, you can use a vanilla 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 create a configuration set event destination. A configuration set event destination, which can be either Amazon CloudWatch or Amazon Kinesis Firehose, describes an AWS service in which Amazon SES publishes the email sending events associated with a configuration set. For information about using configuration sets, see the Amazon SES Developer Guide.
Instance Attribute Summary collapse
- 
  
    
      #configuration_set_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the configuration set that the event destination should be associated with. 
- 
  
    
      #event_destination  ⇒ Types::EventDestination 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An object that describes the AWS service that email sending event information will be published to. 
Instance Attribute Details
#configuration_set_name ⇒ String
The name of the configuration set that the event destination should be associated with.
#event_destination ⇒ Types::EventDestination
An object that describes the AWS service that email sending event information will be published to.