Class: Aws::Athena::Types::ListWorkGroupsInput

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 ListWorkGroupsInput data as a hash:

{
  next_token: "Token",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of workgroups to return in this request.

Returns:

  • (Integer)


678
679
680
681
682
# File 'lib/aws-sdk-athena/types.rb', line 678

class ListWorkGroupsInput < Struct.new(
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

A token to be used by the next request if this request is truncated.

Returns:

  • (String)


678
679
680
681
682
# File 'lib/aws-sdk-athena/types.rb', line 678

class ListWorkGroupsInput < Struct.new(
  :next_token,
  :max_results)
  include Aws::Structure
end