Class: Aws::SES::Types::ListCustomVerificationEmailTemplatesRequest

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

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

Represents a request to list the existing custom verification email templates for your account.

For more information about custom verification email templates, see [Using Custom Verification Email Templates](ses/latest/DeveloperGuide/custom-verification-emails.html) in the *Amazon SES Developer Guide*.

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

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

Returns:

  • (Integer)


2490
2491
2492
2493
2494
# File 'lib/aws-sdk-ses/types.rb', line 2490

class ListCustomVerificationEmailTemplatesRequest < Struct.new(
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

An array the contains the name and creation time stamp for each template in your Amazon SES account.

Returns:

  • (String)


2490
2491
2492
2493
2494
# File 'lib/aws-sdk-ses/types.rb', line 2490

class ListCustomVerificationEmailTemplatesRequest < Struct.new(
  :next_token,
  :max_results)
  include Aws::Structure
end