ListResourceTags
Returns all tags on the specified KMS key.
For general information about tags, including the format and syntax, see Tagging AWS resources in the Amazon Web Services General Reference. For information about using tags in AWS KMS, see Tags in AWS KMS.
Cross-account use: No. You cannot perform this operation on a KMS key in a different AWS account.
Required permissions: kms:ListResourceTags (key policy)
Related operations:
Eventual consistency: The AWS KMS API follows an eventual consistency model. For more information, see AWS KMS eventual consistency.
Request Syntax
{
"KeyId": "string
",
"Limit": number
,
"Marker": "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.
Note
In the following list, the required parameters are described first.
- KeyId
-
Gets tags on the specified KMS key.
Specify the key ID or key ARN of the KMS key.
For example:
-
Key ID:
1234abcd-12ab-34cd-56ef-1234567890ab
-
Key ARN:
arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
To get the key ID and key ARN for a KMS key, use ListKeys or DescribeKey.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 2048.
Required: Yes
-
- Limit
-
Use this parameter to specify the maximum number of items to return. When this value is present, AWS KMS does not return more than the specified number of items, but it might return fewer.
This value is optional. If you include a value, it must be between 1 and 50, inclusive. If you do not include a value, it defaults to 50.
Type: Integer
Valid Range: Minimum value of 1. Maximum value of 1000.
Required: No
- Marker
-
Use this parameter in a subsequent request after you receive a response with truncated results. Set it to the value of
NextMarker
from the truncated response you just received.Do not attempt to construct this value. Use only the value of
NextMarker
from the truncated response you just received.Type: String
Length Constraints: Minimum length of 1. Maximum length of 1024.
Pattern:
[\u0020-\u00FF]*
Required: No
Response Syntax
{
"NextMarker": "string",
"Tags": [
{
"TagKey": "string",
"TagValue": "string"
}
],
"Truncated": boolean
}
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.
- NextMarker
-
When
Truncated
is true, this element is present and contains the value to use for theMarker
parameter in a subsequent request.Do not assume or infer any information from this value.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 1024.
Pattern:
[\u0020-\u00FF]*
- Tags
-
A list of tags. Each tag consists of a tag key and a tag value.
Note
Tagging or untagging a KMS key can allow or deny permission to the KMS key. For details, see ABAC for AWS KMS in the AWS Key Management Service Developer Guide.
Type: Array of Tag objects
- Truncated
-
A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of the
NextMarker
element in this response to theMarker
parameter in a subsequent request.Type: Boolean
Errors
For information about the errors that are common to all actions, see Common Errors.
- InvalidArnException
-
The request was rejected because a specified ARN, or an ARN in a key policy, is not valid.
HTTP Status Code: 400
- InvalidMarkerException
-
The request was rejected because the marker that specifies where pagination should next begin is not valid.
HTTP Status Code: 400
- KMSInternalException
-
The request was rejected because an internal exception occurred. The request can be retried.
HTTP Status Code: 500
- NotFoundException
-
The request was rejected because the specified entity or resource could not be found.
HTTP Status Code: 400
Examples
The following examples are formatted for legibility.
Example Request
This example illustrates one usage of ListResourceTags.
POST / HTTP/1.1 Host: kms.us-east-2.amazonaws.com Content-Length: 49 X-Amz-Target: TrentService.ListResourceTags X-Amz-Date: 20170109T200421Z Content-Type: application/x-amz-json-1.1 Authorization: AWS4-HMAC-SHA256\ Credential=AKIAI44QH8DHBEXAMPLE/20170109/us-east-2/kms/aws4_request,\ SignedHeaders=content-type;host;x-amz-date;x-amz-target,\ Signature=17706fce40fda00c6768b3297355c353490c1dfdf3b3a9591193612961cd2cb4 {"KeyId": "1234abcd-12ab-34cd-56ef-1234567890ab"}
Example Response
This example illustrates one usage of ListResourceTags.
HTTP/1.1 200 OK Server: Server Date: Mon, 09 Jan 2017 20:04:22 GMT Content-Type: application/x-amz-json-1.1 Content-Length: 158 Connection: keep-alive x-amzn-RequestId: cfb46544-d6a6-11e6-a164-b5365990e84e { "Tags": [{ "TagKey": "CostCenter", "TagValue": "87654" }, { "TagKey": "CreatedBy", "TagValue": "ExampleUser" }, { "TagKey": "Purpose", "TagValue": "Test" }], "Truncated": false }
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: