Deletes an email identity that you previously verified for use with Amazon Pinpoint. An identity can be either an email address or a domain name.
Use a bare-bones client and the command you need to make an API call.
import { PinpointEmailClient, DeleteEmailIdentityCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import // const { PinpointEmailClient, DeleteEmailIdentityCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import const client = new PinpointEmailClient(config); const command = new DeleteEmailIdentityCommand(input); const response = await client.send(command);
DeleteEmailIdentityCommandInput for command's input shape.
input
DeleteEmailIdentityCommandOutput for command's response shape.
response
config for PinpointEmailClient's config shape.
config
Deletes an email identity that you previously verified for use with Amazon Pinpoint. An identity can be either an email address or a domain name.
Use a bare-bones client and the command you need to make an API call.
import { PinpointEmailClient, DeleteEmailIdentityCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import // const { PinpointEmailClient, DeleteEmailIdentityCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import const client = new PinpointEmailClient(config); const command = new DeleteEmailIdentityCommand(input); const response = await client.send(command);
DeleteEmailIdentityCommandInput for command's
input
shape.DeleteEmailIdentityCommandOutput for command's
response
shape.config for PinpointEmailClient's
config
shape.