Class: Aws::SES::Types::ListTemplatesRequest

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 ListTemplatesRequest data as a hash:

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

Instance Attribute Summary collapse

Instance Attribute Details

#max_itemsInteger

The maximum number of templates to return. This value must be at least 1 and less than or equal to 10. If you do not specify a value, or if you specify a value less than 1 or greater than 10, the operation will return up to 10 results.

Returns:

  • (Integer)


2725
2726
2727
2728
2729
# File 'lib/aws-sdk-ses/types.rb', line 2725

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

#next_tokenString

A token returned from a previous call to ‘ListTemplates` to indicate the position in the list of email templates.

Returns:

  • (String)


2725
2726
2727
2728
2729
# File 'lib/aws-sdk-ses/types.rb', line 2725

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