Class: Aws::Athena::Types::DeleteWorkGroupInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-athena/types.rb

Overview

Note:

When making an API call, you may pass DeleteWorkGroupInput data as a hash:

{
  work_group: "WorkGroupName", # required
  recursive_delete_option: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#recursive_delete_optionBoolean

The option to delete the workgroup and its contents even if the workgroup contains any named queries.

Returns:

  • (Boolean)


332
333
334
335
336
# File 'lib/aws-sdk-athena/types.rb', line 332

class DeleteWorkGroupInput < Struct.new(
  :work_group,
  :recursive_delete_option)
  include Aws::Structure
end

#work_groupString

The unique name of the workgroup to delete.

Returns:

  • (String)


332
333
334
335
336
# File 'lib/aws-sdk-athena/types.rb', line 332

class DeleteWorkGroupInput < Struct.new(
  :work_group,
  :recursive_delete_option)
  include Aws::Structure
end