List Tags
cloudtrail_list_tags | R Documentation |
Lists the tags for the specified trails, event data stores, dashboards, or channels in the current Region¶
Description¶
Lists the tags for the specified trails, event data stores, dashboards, or channels in the current Region.
Usage¶
cloudtrail_list_tags(ResourceIdList, NextToken)
Arguments¶
ResourceIdList |
[required] Specifies a list of trail, event data store, dashboard, or channel ARNs whose tags will be listed. The list has a limit of 20 ARNs. Example trail ARN format:
Example event data store ARN format: Example dashboard ARN format:
Example channel ARN format:
|
NextToken |
Reserved for future use. |
Value¶
A list with the following syntax:
list(
ResourceTagList = list(
list(
ResourceId = "string",
TagsList = list(
list(
Key = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_tags(
ResourceIdList = list(
"string"
),
NextToken = "string"
)