Class: Aws::SES::Types::ListConfigurationSetsRequest

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

Overview

Note:

When making an API call, you may pass ListConfigurationSetsRequest data as a hash:

{
  next_token: "NextToken",
  max_items: 1,
}

Represents a request to list the 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].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html

Instance Attribute Summary collapse

Instance Attribute Details

#max_itemsInteger

The number of configuration sets to return.

Returns:

  • (Integer)


2427
2428
2429
2430
2431
# File 'lib/aws-sdk-ses/types.rb', line 2427

class ListConfigurationSetsRequest < Struct.new(
  :next_token,
  :max_items)
  include Aws::Structure
end

#next_tokenString

A token returned from a previous call to ‘ListConfigurationSets` to indicate the position of the configuration set in the configuration set list.

Returns:

  • (String)


2427
2428
2429
2430
2431
# File 'lib/aws-sdk-ses/types.rb', line 2427

class ListConfigurationSetsRequest < Struct.new(
  :next_token,
  :max_items)
  include Aws::Structure
end