Class: Aws::SES::Types::DeleteConfigurationSetEventDestinationRequest

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

{
  configuration_set_name: "ConfigurationSetName", # required
  event_destination_name: "EventDestinationName", # required
}

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/DeveloperGuide/monitor-sending-activity.html

Instance Attribute Summary collapse

Instance Attribute Details

#configuration_set_nameString

The name of the configuration set from which to delete the event destination.

Returns:

  • (String)


1043
1044
1045
1046
1047
# File 'lib/aws-sdk-ses/types.rb', line 1043

class DeleteConfigurationSetEventDestinationRequest < Struct.new(
  :configuration_set_name,
  :event_destination_name)
  include Aws::Structure
end

#event_destination_nameString

The name of the event destination to delete.

Returns:

  • (String)


1043
1044
1045
1046
1047
# File 'lib/aws-sdk-ses/types.rb', line 1043

class DeleteConfigurationSetEventDestinationRequest < Struct.new(
  :configuration_set_name,
  :event_destination_name)
  include Aws::Structure
end