Class: Aws::SES::Types::ListReceiptRuleSetsRequest

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

{
  next_token: "NextToken",
}

Represents a request to list the receipt rule sets that exist under your AWS account. 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

#next_tokenString

A token returned from a previous call to ‘ListReceiptRuleSets` to indicate the position in the receipt rule set list.

Returns:

  • (String)


2675
2676
2677
2678
# File 'lib/aws-sdk-ses/types.rb', line 2675

class ListReceiptRuleSetsRequest < Struct.new(
  :next_token)
  include Aws::Structure
end