Returns information about the workgroup with the specified name.
athena_get_work_group(WorkGroup)
A list with the following syntax:
list(
WorkGroup = list(
Name = "string",
State = "ENABLED"|"DISABLED",
Configuration = list(
ResultConfiguration = list(
OutputLocation = "string",
EncryptionConfiguration = list(
EncryptionOption = "SSE_S3"|"SSE_KMS"|"CSE_KMS",
KmsKey = "string"
)
),
EnforceWorkGroupConfiguration = TRUE|FALSE,
PublishCloudWatchMetricsEnabled = TRUE|FALSE,
BytesScannedCutoffPerQuery = 123,
RequesterPaysEnabled = TRUE|FALSE
),
Description = "string",
CreationTime = as.POSIXct(
"2015-01-01"
)
)
)
[required] The name of the workgroup.
svc$get_work_group(
WorkGroup = "string"
)