amazonka-ses-2.0: Amazon Simple Email Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.SES.ListCustomVerificationEmailTemplates

Description

Lists the existing custom verification email templates for your account in the current AWS Region.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

This operation returns paginated results.

Synopsis

Creating a Request

data ListCustomVerificationEmailTemplates Source #

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 in the Amazon SES Developer Guide.

See: newListCustomVerificationEmailTemplates smart constructor.

Constructors

ListCustomVerificationEmailTemplates' 

Fields

  • maxResults :: Maybe Natural

    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.

  • nextToken :: Maybe Text

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

Instances

Instances details
ToHeaders ListCustomVerificationEmailTemplates Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

ToPath ListCustomVerificationEmailTemplates Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

ToQuery ListCustomVerificationEmailTemplates Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

AWSPager ListCustomVerificationEmailTemplates Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

AWSRequest ListCustomVerificationEmailTemplates Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

Generic ListCustomVerificationEmailTemplates Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

Read ListCustomVerificationEmailTemplates Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

Show ListCustomVerificationEmailTemplates Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

NFData ListCustomVerificationEmailTemplates Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

Eq ListCustomVerificationEmailTemplates Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

Hashable ListCustomVerificationEmailTemplates Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

type AWSResponse ListCustomVerificationEmailTemplates Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

type Rep ListCustomVerificationEmailTemplates Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

type Rep ListCustomVerificationEmailTemplates = D1 ('MetaData "ListCustomVerificationEmailTemplates" "Amazonka.SES.ListCustomVerificationEmailTemplates" "amazonka-ses-2.0-Gc6VkOIX7Sd2eunWehphuf" 'False) (C1 ('MetaCons "ListCustomVerificationEmailTemplates'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListCustomVerificationEmailTemplates :: ListCustomVerificationEmailTemplates Source #

Create a value of ListCustomVerificationEmailTemplates with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:maxResults:ListCustomVerificationEmailTemplates', listCustomVerificationEmailTemplates_maxResults - 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.

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

Request Lenses

listCustomVerificationEmailTemplates_maxResults :: Lens' ListCustomVerificationEmailTemplates (Maybe Natural) Source #

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.

listCustomVerificationEmailTemplates_nextToken :: Lens' ListCustomVerificationEmailTemplates (Maybe Text) Source #

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

Destructuring the Response

data ListCustomVerificationEmailTemplatesResponse Source #

A paginated list of custom verification email templates.

See: newListCustomVerificationEmailTemplatesResponse smart constructor.

Constructors

ListCustomVerificationEmailTemplatesResponse' 

Fields

Instances

Instances details
Generic ListCustomVerificationEmailTemplatesResponse Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

Read ListCustomVerificationEmailTemplatesResponse Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

Show ListCustomVerificationEmailTemplatesResponse Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

NFData ListCustomVerificationEmailTemplatesResponse Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

Eq ListCustomVerificationEmailTemplatesResponse Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

type Rep ListCustomVerificationEmailTemplatesResponse Source # 
Instance details

Defined in Amazonka.SES.ListCustomVerificationEmailTemplates

type Rep ListCustomVerificationEmailTemplatesResponse = D1 ('MetaData "ListCustomVerificationEmailTemplatesResponse" "Amazonka.SES.ListCustomVerificationEmailTemplates" "amazonka-ses-2.0-Gc6VkOIX7Sd2eunWehphuf" 'False) (C1 ('MetaCons "ListCustomVerificationEmailTemplatesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "customVerificationEmailTemplates") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [CustomVerificationEmailTemplate])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListCustomVerificationEmailTemplatesResponse Source #

Create a value of ListCustomVerificationEmailTemplatesResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:customVerificationEmailTemplates:ListCustomVerificationEmailTemplatesResponse', listCustomVerificationEmailTemplatesResponse_customVerificationEmailTemplates - A list of the custom verification email templates that exist in your account.

ListCustomVerificationEmailTemplates, listCustomVerificationEmailTemplatesResponse_nextToken - 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.

$sel:httpStatus:ListCustomVerificationEmailTemplatesResponse', listCustomVerificationEmailTemplatesResponse_httpStatus - The response's http status code.

Response Lenses

listCustomVerificationEmailTemplatesResponse_nextToken :: Lens' ListCustomVerificationEmailTemplatesResponse (Maybe Text) Source #

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.