Deletes the standard customer profile and all data pertaining to the profile.
Use a bare-bones client and the command you need to make an API call.
import { CustomerProfilesClient, DeleteProfileCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import // const { CustomerProfilesClient, DeleteProfileCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import const client = new CustomerProfilesClient(config); const command = new DeleteProfileCommand(input); const response = await client.send(command);
DeleteProfileCommandInput for command's input shape.
input
DeleteProfileCommandOutput for command's response shape.
response
config for CustomerProfilesClient's config shape.
config
Deletes the standard customer profile and all data pertaining to the profile.
Use a bare-bones client and the command you need to make an API call.
import { CustomerProfilesClient, DeleteProfileCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import // const { CustomerProfilesClient, DeleteProfileCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import const client = new CustomerProfilesClient(config); const command = new DeleteProfileCommand(input); const response = await client.send(command);
DeleteProfileCommandInput for command's
input
shape.DeleteProfileCommandOutput for command's
response
shape.config for CustomerProfilesClient's
config
shape.