Class: Aws::Athena::Types::ListNamedQueriesInput

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 ListNamedQueriesInput 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 queries to return in this request.

Returns:

  • (Integer)


541
542
543
544
545
546
# File 'lib/aws-sdk-athena/types.rb', line 541

class ListNamedQueriesInput < 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)


541
542
543
544
545
546
# File 'lib/aws-sdk-athena/types.rb', line 541

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

#work_groupString

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

Returns:

  • (String)


541
542
543
544
545
546
# File 'lib/aws-sdk-athena/types.rb', line 541

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