List Resources For Tag Option
servicecatalog_list_resources_for_tag_option | R Documentation |
Lists the resources associated with the specified TagOption¶
Description¶
Lists the resources associated with the specified TagOption.
Usage¶
servicecatalog_list_resources_for_tag_option(TagOptionId, ResourceType,
PageSize, PageToken)
Arguments¶
TagOptionId |
[required] The TagOption identifier. |
ResourceType |
The resource type.
|
PageSize |
The maximum number of items to return with this call. |
PageToken |
The page token for the next set of results. To retrieve the first set of results, use null. |
Value¶
A list with the following syntax:
list(
ResourceDetails = list(
list(
Id = "string",
ARN = "string",
Name = "string",
Description = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
)
)
),
PageToken = "string"
)
Request syntax¶
svc$list_resources_for_tag_option(
TagOptionId = "string",
ResourceType = "string",
PageSize = 123,
PageToken = "string"
)