The following examples show how to add a tag to an Amazon Pinpoint resource by using the AWS CLI and the Amazon Pinpoint REST API. You can also use any supported AWS SDK to add a tag to a resource.
To add a tag to multiple Amazon Pinpoint resources in a single operation, use the resource groups tagging operations of the AWS CLI or the AWS Resource Groups Tagging API.
Add tags by using the API
To create a new resource and add a tag to it by using the Amazon Pinpoint REST API, send a
POST request to the appropriate resource URI. Include the tags
parameter and values in the body of the request. The following example shows how to
specify a tag when you create a new project.
POST /v1/apps HTTP/1.1
Host: pinpoint.us-east-1.amazonaws.com
Content-Type: application/x-www-form-urlencoded
Accept: application/json
Cache-Control: no-cache
{
"Name":"MyProject",
"tags":{
"key1":"value1"
}
}
To add a tag to an existing resource, send a POST request to the Tags URI. Include the Amazon Resource Name (ARN) of the resource in the
URI. The ARN should be URL encoded. In the body of the request, include the
tags
parameter and values, as shown in the following
example.
POST /v1/tags/resource-arn
HTTP/1.1
Host: pinpoint.us-east-1.amazonaws.com
Content-Type: application/json
Accept: application/json
Cache-Control: no-cache
{
"tags":{
"key1":"value1"
}
}
Add tags by using the AWS CLI
To create a new resource and add a tag to it by using the AWS CLI, use the appropriate
create
command for the resource. Include the tags
parameter and values. The following example shows how to specify tags when you create a
new project.
$
aws pinpoint create-app \
--create-application-request '{
"Name":"MyProject
",
"tags": {
"key1
":"value1
",
"key2
":"value2
"
}
}'
In the preceding example, do the following:
-
Replace
MyProject
with the name that you want to give the project. -
Replace
key1
andkey2
with the keys of the tags that you want to add to the resource. -
Replace
value1
andvalue2
with the values of the tags that you want to add for the respective keys.
For information about the commands that you can use to create an Amazon Pinpoint resource, see the AWS CLI Command Reference.
To add a tag to an existing resource, use the tag-resource
command and
specify the appropriate values for the required parameters:
$
aws pinpoint tag-resource \
--resource-arn resource-arn
\
--tags-model '{
"tags": {
"key1
":"value1
",
"key2
":"value2
"
}
}'
In the preceding example, do the following:
-
Replace
resource-arn
with the Amazon Resource Name (ARN) of the resource that you want to add a tag to. -
Replace
key1
andkey2
with the keys of the tags that you want to add to the resource. -
Replace
value1
andvalue2
with the values of the tags that you want to add for the respective keys.