Class: Aws::SES::Types::ListTemplatesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::ListTemplatesRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_items ⇒ Integer
The maximum number of templates to return.
-
#next_token ⇒ String
A token returned from a previous call to ‘ListTemplates` to indicate the position in the list of email templates.
Instance Attribute Details
#max_items ⇒ Integer
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.
2731 2732 2733 2734 2735 2736 |
# File 'lib/aws-sdk-ses/types.rb', line 2731 class ListTemplatesRequest < Struct.new( :next_token, :max_items) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token returned from a previous call to ‘ListTemplates` to indicate the position in the list of email templates.
2731 2732 2733 2734 2735 2736 |
# File 'lib/aws-sdk-ses/types.rb', line 2731 class ListTemplatesRequest < Struct.new( :next_token, :max_items) SENSITIVE = [] include Aws::Structure end |