Class: Aws::SES::Types::DeleteReceiptRuleSetRequest

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

{
  rule_set_name: "ReceiptRuleSetName", # required
}

Represents a request to delete a receipt rule set and all of the receipt rules it contains. You use receipt rule sets to receive email with Amazon SES. For more information, see the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html

Instance Attribute Summary collapse

Instance Attribute Details

#rule_set_nameString

The name of the receipt rule set to delete.

Returns:

  • (String)


1303
1304
1305
1306
# File 'lib/aws-sdk-ses/types.rb', line 1303

class DeleteReceiptRuleSetRequest < Struct.new(
  :rule_set_name)
  include Aws::Structure
end