Transfer / Paginator / ListTagsForResource
ListTagsForResource#
- class Transfer.Paginator.ListTagsForResource#
paginator = client.get_paginator('list_tags_for_resource')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
Transfer.Client.list_tags_for_resource()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( Arn='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
Arn (string) –
[REQUIRED]
Requests the tags associated with a particular Amazon Resource Name (ARN). An ARN is an identifier for a specific Amazon Web Services resource, such as a server, user, or role.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextToken
will be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'Arn': 'string', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ] }
Response Structure
(dict) –
Arn (string) –
The ARN you specified to list the tags of.
Tags (list) –
Key-value pairs that are assigned to a resource, usually for the purpose of grouping and searching for items. Tags are metadata that you define.
(dict) –
Creates a key-value pair for a specific resource. Tags are metadata that you can use to search for and group a resource for various purposes. You can apply tags to servers, users, and roles. A tag key can take more than one value. For example, to group servers for accounting purposes, you might create a tag called
Group
and assign the valuesResearch
andAccounting
to that group.Key (string) –
The name assigned to the tag that you create.
Value (string) –
Contains one or more values that you assigned to the key name you create.