Class: Aws::SES::Types::ListReceiptRuleSetsResponse

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ses/types.rb

Overview

A list of receipt rule sets that exist under your AWS account.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

A token indicating that there are additional receipt rule sets available to be listed. Pass this token to successive calls of ‘ListReceiptRuleSets` to retrieve up to 100 receipt rule sets at a time.

Returns:

  • (String)


2697
2698
2699
2700
2701
# File 'lib/aws-sdk-ses/types.rb', line 2697

class ListReceiptRuleSetsResponse < Struct.new(
  :rule_sets,
  :next_token)
  include Aws::Structure
end

#rule_setsArray<Types::ReceiptRuleSetMetadata>

The metadata for the currently active receipt rule set. The metadata consists of the rule set name and the timestamp of when the rule set was created.

Returns:



2697
2698
2699
2700
2701
# File 'lib/aws-sdk-ses/types.rb', line 2697

class ListReceiptRuleSetsResponse < Struct.new(
  :rule_sets,
  :next_token)
  include Aws::Structure
end