Skip to content

List Configuration Sets

ses_list_configuration_sets R Documentation

Provides a list of the configuration sets associated with your Amazon SES account in the current Amazon Web Services Region

Description

Provides a list of the configuration sets associated with your Amazon SES account in the current Amazon Web Services Region. For information about using configuration sets, see Monitoring Your Amazon SES Sending Activity in the Amazon SES Developer Guide.

You can execute this operation no more than once per second. This operation returns up to 1,000 configuration sets each time it is run. If your Amazon SES account has more than 1,000 configuration sets, this operation also returns NextToken. You can then execute the list_configuration_sets operation again, passing the NextToken parameter and the value of the NextToken element to retrieve additional results.

Usage

ses_list_configuration_sets(NextToken, MaxItems)

Arguments

NextToken

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

MaxItems

The number of configuration sets to return.

Value

A list with the following syntax:

list(
  ConfigurationSets = list(
    list(
      Name = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_configuration_sets(
  NextToken = "string",
  MaxItems = 123
)