Adds tags to the specified AWS Elemental MediaStore container. Tags are key:value pairs that you can associate with AWS resources. For example, the
tag key might be "customer" and the tag value might be "companyA." You can specify one or more tags to add to each container. You can add up to 50
tags to each container. For more information about tagging, including naming and usage conventions, see Tagging Resources in MediaStore.
example
Use a bare-bones client and the command you need to make an API call.
Adds tags to the specified AWS Elemental MediaStore container. Tags are key:value pairs that you can associate with AWS resources. For example, the tag key might be "customer" and the tag value might be "companyA." You can specify one or more tags to add to each container. You can add up to 50 tags to each container. For more information about tagging, including naming and usage conventions, see Tagging Resources in MediaStore.
Use a bare-bones client and the command you need to make an API call.
import { MediaStoreClient, TagResourceCommand } from "@aws-sdk/client-mediastore"; // ES Modules import // const { MediaStoreClient, TagResourceCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import const client = new MediaStoreClient(config); const command = new TagResourceCommand(input); const response = await client.send(command);
TagResourceCommandInput for command's
input
shape.TagResourceCommandOutput for command's
response
shape.config for MediaStoreClient's
config
shape.