Class: Aws::SES::Types::ListConfigurationSetsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::ListConfigurationSetsResponse
- Defined in:
- gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb
Overview
A list of configuration sets associated with your AWS account. Configuration sets enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration_sets ⇒ Array<Types::ConfigurationSet>
A list of configuration sets.
-
#next_token ⇒ String
A token indicating that there are additional configuration sets available to be listed.
Instance Attribute Details
#configuration_sets ⇒ Array<Types::ConfigurationSet>
A list of configuration sets.
2446 2447 2448 2449 2450 2451 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 2446 class ListConfigurationSetsResponse < Struct.new( :configuration_sets, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token indicating that there are additional configuration sets
available to be listed. Pass this token to successive calls of
ListConfigurationSets
.
2446 2447 2448 2449 2450 2451 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 2446 class ListConfigurationSetsResponse < Struct.new( :configuration_sets, :next_token) SENSITIVE = [] include Aws::Structure end |