Lists the tags, if any, that are associated with your private CA or one that has been
shared with you. Tags are labels that you can use to identify and organize your CAs.
Each tag consists of a key and an optional value. Call the TagCertificateAuthority
action to add one or more tags to your CA. Call the UntagCertificateAuthority action to remove tags.
example
Use a bare-bones client and the command you need to make an API call.
Lists the tags, if any, that are associated with your private CA or one that has been shared with you. Tags are labels that you can use to identify and organize your CAs. Each tag consists of a key and an optional value. Call the TagCertificateAuthority action to add one or more tags to your CA. Call the UntagCertificateAuthority action to remove tags.
Use a bare-bones client and the command you need to make an API call.
import { ACMPCAClient, ListTagsCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import // const { ACMPCAClient, ListTagsCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import const client = new ACMPCAClient(config); const command = new ListTagsCommand(input); const response = await client.send(command);
ListTagsCommandInput for command's
input
shape.ListTagsCommandOutput for command's
response
shape.config for ACMPCAClient's
config
shape.