Class: Aws::SES::Types::DeleteConfigurationSetEventDestinationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::DeleteConfigurationSetEventDestinationRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Represents a request to delete a configuration set event destination. Configuration set event destinations are associated with configuration sets, which 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/dg/monitor-sending-activity.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration_set_name ⇒ String
The name of the configuration set from which to delete the event destination.
-
#event_destination_name ⇒ String
The name of the event destination to delete.
Instance Attribute Details
#configuration_set_name ⇒ String
The name of the configuration set from which to delete the event destination.
933 934 935 936 937 938 |
# File 'lib/aws-sdk-ses/types.rb', line 933 class DeleteConfigurationSetEventDestinationRequest < Struct.new( :configuration_set_name, :event_destination_name) SENSITIVE = [] include Aws::Structure end |
#event_destination_name ⇒ String
The name of the event destination to delete.
933 934 935 936 937 938 |
# File 'lib/aws-sdk-ses/types.rb', line 933 class DeleteConfigurationSetEventDestinationRequest < Struct.new( :configuration_set_name, :event_destination_name) SENSITIVE = [] include Aws::Structure end |