Batch Get View
| resourceexplorer_batch_get_view | R Documentation |
Retrieves details about a list of views¶
Description¶
Retrieves details about a list of views.
Usage¶
resourceexplorer_batch_get_view(ViewArns)
Arguments¶
ViewArns |
A list of Amazon resource names (ARNs) that identify the views you want details for. |
Value¶
A list with the following syntax:
list(
Views = list(
list(
ViewArn = "string",
ViewName = "string",
Owner = "string",
LastUpdatedAt = as.POSIXct(
"2015-01-01"
),
Scope = "string",
IncludedProperties = list(
list(
Name = "string"
)
),
Filters = list(
FilterString = "string"
)
)
),
Errors = list(
list(
ViewArn = "string",
ErrorMessage = "string"
)
)
)
Request syntax¶
svc$batch_get_view(
ViewArns = list(
"string"
)
)