Class: Aws::SES::Types::ListReceiptRuleSetsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::ListReceiptRuleSetsResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
A list of receipt rule sets that exist under your Amazon Web Services account.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A token indicating that there are additional receipt rule sets available to be listed.
-
#rule_sets ⇒ Array<Types::ReceiptRuleSetMetadata>
The metadata for the currently active receipt rule set.
Instance Attribute Details
#next_token ⇒ String
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.
2710 2711 2712 2713 2714 2715 |
# File 'lib/aws-sdk-ses/types.rb', line 2710 class ListReceiptRuleSetsResponse < Struct.new( :rule_sets, :next_token) SENSITIVE = [] include Aws::Structure end |
#rule_sets ⇒ Array<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.
2710 2711 2712 2713 2714 2715 |
# File 'lib/aws-sdk-ses/types.rb', line 2710 class ListReceiptRuleSetsResponse < Struct.new( :rule_sets, :next_token) SENSITIVE = [] include Aws::Structure end |