List Work Groups
| athena_list_work_groups | R Documentation |
Lists available workgroups for the account¶
Description¶
Lists available workgroups for the account.
Usage¶
Arguments¶
NextTokenA token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the
NextTokenfrom the response object of the previous page call.MaxResultsThe maximum number of workgroups to return in this request.
Value¶
A list with the following syntax:
list(
WorkGroups = list(
list(
Name = "string",
State = "ENABLED"|"DISABLED",
Description = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
EngineVersion = list(
SelectedEngineVersion = "string",
EffectiveEngineVersion = "string"
),
IdentityCenterApplicationArn = "string"
)
),
NextToken = "string"
)