Learn R Programming

paws.analytics (version 0.1.12)

athena_get_work_group: Returns information about the workgroup with the specified name

Description

Returns information about the workgroup with the specified name.

Usage

athena_get_work_group(WorkGroup)

Value

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"
    )
  )
)

Arguments

WorkGroup

[required] The name of the workgroup.

Request syntax

svc$get_work_group(
  WorkGroup = "string"
)