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.
ses_list_identities(IdentityType, NextToken, MaxItems)
The type of the identities to list. Possible values are "EmailAddress" and "Domain". If this parameter is omitted, then all identities will be listed.
The token to use for pagination.
The maximum number of identities per page. Possible values are 1-1000 inclusive.
svc$list_identities( IdentityType = "EmailAddress"|"Domain", NextToken = "string", MaxItems = 123 )
You can execute this operation no more than once per second.
# 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