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

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

Overview

Constant Summary collapse

SENSITIVE =
[]

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 100. If more than 100 items are requested, the page size will automatically set to 100. If you do not specify a value, 10 is the default page size.

Returns:

  • (Integer)


2731
2732
2733
2734
2735
2736
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 2731

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


2731
2732
2733
2734
2735
2736
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 2731

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