List Tags For Resource
opsworkscm_list_tags_for_resource | R Documentation |
Returns a list of tags that are applied to the specified AWS OpsWorks for Chef Automate or AWS OpsWorks for Puppet Enterprise servers or backups¶
Description¶
Returns a list of tags that are applied to the specified AWS OpsWorks for Chef Automate or AWS OpsWorks for Puppet Enterprise servers or backups.
Usage¶
opsworkscm_list_tags_for_resource(ResourceArn, NextToken, MaxResults)
Arguments¶
ResourceArn |
[required] The Amazon Resource Number (ARN) of an AWS OpsWorks
for Chef Automate or AWS OpsWorks for Puppet Enterprise server for which
you want to show applied tags. For example, |
NextToken |
NextToken is a string that is returned in some command responses.
It indicates that not all entries have been returned, and that you must
run at least one more request to get remaining items. To get remaining
results, call |
MaxResults |
To receive a paginated response, use this parameter to specify
the maximum number of results to be returned with a single call. If the
number of available results exceeds this maximum, the response includes
a |
Value¶
A list with the following syntax:
list(
Tags = list(
list(
Key = "string",
Value = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_tags_for_resource(
ResourceArn = "string",
NextToken = "string",
MaxResults = 123
)