Displays the tags associated with an Amazon Connect Customer Profiles resource. In Connect
Customer Profiles, domains, profile object types, and integrations can be tagged.
example
Use a bare-bones client and the command you need to make an API call.
Displays the tags associated with an Amazon Connect Customer Profiles resource. In Connect Customer Profiles, domains, profile object types, and integrations can be tagged.
Use a bare-bones client and the command you need to make an API call.
import { CustomerProfilesClient, ListTagsForResourceCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import // const { CustomerProfilesClient, ListTagsForResourceCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import const client = new CustomerProfilesClient(config); const command = new ListTagsForResourceCommand(input); const response = await client.send(command);
ListTagsForResourceCommandInput for command's
input
shape.ListTagsForResourceCommandOutput for command's
response
shape.config for CustomerProfilesClient's
config
shape.