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.
You can execute this operation no more than once per second.
example
Use a bare-bones client and the command you need to make an API call.
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.
You can execute this operation no more than once per second.
Use a bare-bones client and the command you need to make an API call.
import { SESClient, ListIdentitiesCommand } from "@aws-sdk/client-ses"; // ES Modules import // const { SESClient, ListIdentitiesCommand } = require("@aws-sdk/client-ses"); // CommonJS import const client = new SESClient(config); const command = new ListIdentitiesCommand(input); const response = await client.send(command);
ListIdentitiesCommandInput for command's
input
shape.ListIdentitiesCommandOutput for command's
response
shape.config for SESClient's
config
shape.