Class: Aws::Athena::Types::ListQueryExecutionsInput

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of query executions to return in this request.

Returns:

  • (Integer)


588
589
590
591
592
593
# File 'lib/aws-sdk-athena/types.rb', line 588

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

#next_tokenString

The token that specifies where to start pagination if a previous request was truncated.

Returns:

  • (String)


588
589
590
591
592
593
# File 'lib/aws-sdk-athena/types.rb', line 588

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

#work_groupString

The name of the workgroup from which queries are being returned.

Returns:

  • (String)


588
589
590
591
592
593
# File 'lib/aws-sdk-athena/types.rb', line 588

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