Class: Aws::Athena::Types::ListExecutorsRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#executor_state_filterString

A filter for a specific executor state. A description of each state follows.

‘CREATING` - The executor is being started, including acquiring resources.

‘CREATED` - The executor has been started.

‘REGISTERED` - The executor has been registered.

‘TERMINATING` - The executor is in the process of shutting down.

‘TERMINATED` - The executor is no longer running.

‘FAILED` - Due to a failure, the executor is no longer running.

Returns:

  • (String)


2351
2352
2353
2354
2355
2356
2357
2358
# File 'lib/aws-sdk-athena/types.rb', line 2351

class ListExecutorsRequest < Struct.new(
  :session_id,
  :executor_state_filter,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#max_resultsInteger

The maximum number of executors to return.

Returns:

  • (Integer)


2351
2352
2353
2354
2355
2356
2357
2358
# File 'lib/aws-sdk-athena/types.rb', line 2351

class ListExecutorsRequest < Struct.new(
  :session_id,
  :executor_state_filter,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the ‘NextToken` from the response object of the previous page call.

Returns:

  • (String)


2351
2352
2353
2354
2355
2356
2357
2358
# File 'lib/aws-sdk-athena/types.rb', line 2351

class ListExecutorsRequest < Struct.new(
  :session_id,
  :executor_state_filter,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#session_idString

The session ID.

Returns:

  • (String)


2351
2352
2353
2354
2355
2356
2357
2358
# File 'lib/aws-sdk-athena/types.rb', line 2351

class ListExecutorsRequest < Struct.new(
  :session_id,
  :executor_state_filter,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end