paws.customer.engagement (version 0.1.0)

ses_list_identities: Returns a list containing all of the identities (email addresses and domains) for your AWS account in the current AWS Region, regardless of verification status

Description

Returns a list containing all of the identities (email addresses and domains) for your AWS account in the current AWS Region, regardless of verification status.

Usage

ses_list_identities(IdentityType, NextToken, MaxItems)

Arguments

IdentityType

The type of the identities to list. Possible values are "EmailAddress" and "Domain". If this parameter is omitted, then all identities will be listed.

NextToken

The token to use for pagination.

MaxItems

The maximum number of identities per page. Possible values are 1-1000 inclusive.

Request syntax

svc$list_identities(
  IdentityType = "EmailAddress"|"Domain",
  NextToken = "string",
  MaxItems = 123
)

Details

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

Examples

Run this code
# NOT RUN {
# The following example lists the email address identities that have been
# submitted for verification with Amazon SES:
# }
# NOT RUN {
svc$list_identities(
  IdentityType = "EmailAddress",
  MaxItems = 123L,
  NextToken = ""
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab