Class: Aws::SES::Types::ListCustomVerificationEmailTemplatesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::ListCustomVerificationEmailTemplatesResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
A paginated list of custom verification email templates.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_verification_email_templates ⇒ Array<Types::CustomVerificationEmailTemplate>
A list of the custom verification email templates that exist in your account.
-
#next_token ⇒ String
A token indicating that there are additional custom verification email templates available to be listed.
Instance Attribute Details
#custom_verification_email_templates ⇒ Array<Types::CustomVerificationEmailTemplate>
A list of the custom verification email templates that exist in your account.
2539 2540 2541 2542 2543 2544 |
# File 'lib/aws-sdk-ses/types.rb', line 2539 class ListCustomVerificationEmailTemplatesResponse < Struct.new( :custom_verification_email_templates, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token indicating that there are additional custom verification email templates available to be listed. Pass this token to a subsequent call to ‘ListTemplates` to retrieve the next 50 custom verification email templates.
2539 2540 2541 2542 2543 2544 |
# File 'lib/aws-sdk-ses/types.rb', line 2539 class ListCustomVerificationEmailTemplatesResponse < Struct.new( :custom_verification_email_templates, :next_token) SENSITIVE = [] include Aws::Structure end |