List Tags For Resources
route53_list_tags_for_resources | R Documentation |
Lists tags for up to 10 health checks or hosted zones¶
Description¶
Lists tags for up to 10 health checks or hosted zones.
For information about using tags for cost allocation, see Using Cost Allocation Tags in the Billing and Cost Management User Guide.
Usage¶
route53_list_tags_for_resources(ResourceType, ResourceIds)
Arguments¶
ResourceType |
[required] The type of the resources.
|
ResourceIds |
[required] A complex type that contains the ResourceId element for each resource for which you want to get a list of tags. |
Value¶
A list with the following syntax:
list(
ResourceTagSets = list(
list(
ResourceType = "healthcheck"|"hostedzone",
ResourceId = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
)
)
Request syntax¶
svc$list_tags_for_resources(
ResourceType = "healthcheck"|"hostedzone",
ResourceIds = list(
"string"
)
)