Class: Aws::SES::Types::ListReceiptRuleSetsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::ListReceiptRuleSetsResponse
- Defined in:
- gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb
Overview
A list of receipt rule sets that exist under your AWS 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.
3192 3193 3194 3195 3196 3197 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3192 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.
3192 3193 3194 3195 3196 3197 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3192 class ListReceiptRuleSetsResponse < Struct.new( :rule_sets, :next_token) SENSITIVE = [] include Aws::Structure end |