Get View
| resourceexplorer_get_view | R Documentation |
Retrieves details of the specified view¶
Description¶
Retrieves details of the specified view.
Usage¶
resourceexplorer_get_view(ViewArn)
Arguments¶
ViewArn |
[required] The Amazon resource name (ARN) of the view that you want information about. |
Value¶
A list with the following syntax:
list(
View = list(
ViewArn = "string",
ViewName = "string",
Owner = "string",
LastUpdatedAt = as.POSIXct(
"2015-01-01"
),
Scope = "string",
IncludedProperties = list(
list(
Name = "string"
)
),
Filters = list(
FilterString = "string"
)
),
Tags = list(
"string"
)
)
Request syntax¶
svc$get_view(
ViewArn = "string"
)