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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ses/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

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)


2710
2711
2712
2713
2714
2715
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 2710

class ListReceiptRuleSetsResponse < Struct.new(
  :rule_sets,
  :next_token)
  SENSITIVE = []
  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:



2710
2711
2712
2713
2714
2715
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 2710

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