paws.analytics (version 0.1.0)

athena_update_work_group: Updates the workgroup with the specified name

Description

Updates the workgroup with the specified name. The workgroup's name cannot be changed.

Usage

athena_update_work_group(WorkGroup, Description, ConfigurationUpdates,
  State)

Arguments

WorkGroup

[required] The specified workgroup that will be updated.

Description

The workgroup description.

ConfigurationUpdates

The workgroup configuration that will be updated for the given workgroup.

State

The workgroup state that will be updated for the given workgroup.

Request syntax

svc$update_work_group(
  WorkGroup = "string",
  Description = "string",
  ConfigurationUpdates = list(
    EnforceWorkGroupConfiguration = TRUE|FALSE,
    ResultConfigurationUpdates = list(
      OutputLocation = "string",
      RemoveOutputLocation = TRUE|FALSE,
      EncryptionConfiguration = list(
        EncryptionOption = "SSE_S3"|"SSE_KMS"|"CSE_KMS",
        KmsKey = "string"
      ),
      RemoveEncryptionConfiguration = TRUE|FALSE
    ),
    PublishCloudWatchMetricsEnabled = TRUE|FALSE,
    BytesScannedCutoffPerQuery = 123,
    RemoveBytesScannedCutoffPerQuery = TRUE|FALSE
  ),
  State = "ENABLED"|"DISABLED"
)