ListTagsForResource - Amazon Elastic Container Registry
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

ListTagsForResource

List the tags for an Amazon ECR resource.

Request Syntax

{ "resourceArn": "string" }

Request Parameters

For information about the parameters that are common to all actions, see Common Parameters.

The request accepts the following data in JSON format.

resourceArn

The Amazon Resource Name (ARN) that identifies the resource for which to list the tags. Currently, the only supported resource is an Amazon ECR repository.

Type: String

Required: Yes

Response Syntax

{ "tags": [ { "Key": "string", "Value": "string" } ] }

Response Elements

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

tags

The tags for the resource.

Type: Array of Tag objects

Errors

For information about the errors that are common to all actions, see Common Errors.

InvalidParameterException

The specified parameter is invalid. Review the available parameters for the API request.

HTTP Status Code: 400

RepositoryNotFoundException

The specified repository could not be found. Check the spelling of the specified repository and ensure that you are performing operations on the correct registry.

HTTP Status Code: 400

ServerException

These errors are usually caused by a server-side issue.

HTTP Status Code: 500

Examples

In the following example or examples, the Authorization header contents (AUTHPARAMS) must be replaced with an Amazon Signature Version 4 signature. For more information about creating these signatures, see Signature Version 4 Signing Process in the Amazon General Reference.

You only need to learn how to sign HTTP requests if you intend to manually create them. When you use the Amazon Command Line Interface (Amazon CLI) or one of the Amazon SDKs to make requests to Amazon, these tools automatically sign the requests for you with the access key that you specify when you configure the tools. When you use these tools, you don't need to learn how to sign requests yourself.

Example

This example lists the tags associated with the sample-repo repository.

Sample Request

POST / HTTP/1.1 Host: ecr.us-west-2.amazonaws.com Accept-Encoding: identity Content-Length: 81 X-Amz-Target: AmazonEC2ContainerRegistry_V20150921.ListTagsForResource X-Amz-Date: 20161216T201255Z User-Agent: aws-cli/1.16.310 Python/3.6.1 Darwin/18.7.0 botocore/1.13.46 Content-Type: application/x-amz-json-1.1 Authorization: AUTHPARAMS { "resourceArn": "arn:aws:ecr:us-west-2:012345678910:repository/sample-repo" }

Sample Response

HTTP/1.1 200 OK Server: Server Date: Fri, 24 Jan 2020 03:48:07 GMT Content-Type: application/x-amz-json-1.1 Content-Length: 11 Connection: keep-alive x-amzn-RequestId: 3081a92b-2066-41f8-8a47-0580288ada9e { "tags": [ { "Key": "environment", "Value": "production" } ] }

See Also

For more information about using this API in one of the language-specific Amazon SDKs, see the following: