Returns a list of all of the email identities that are associated with your Amazon Pinpoint
account. An identity can be either an email address or a domain. This operation returns
identities that are verified as well as those that aren't.
example
Use a bare-bones client and the command you need to make an API call.
Returns a list of all of the email identities that are associated with your Amazon Pinpoint account. An identity can be either an email address or a domain. This operation returns identities that are verified as well as those that aren't.
Use a bare-bones client and the command you need to make an API call.
import { PinpointEmailClient, ListEmailIdentitiesCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import // const { PinpointEmailClient, ListEmailIdentitiesCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import const client = new PinpointEmailClient(config); const command = new ListEmailIdentitiesCommand(input); const response = await client.send(command);
ListEmailIdentitiesCommandInput for command's
input
shape.ListEmailIdentitiesCommandOutput for command's
response
shape.config for PinpointEmailClient's
config
shape.