Class: Aws::Athena::Types::ListEngineVersionsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ListEngineVersionsOutput
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#engine_versions ⇒ Array<Types::EngineVersion>
A list of engine versions that are available to choose from.
-
#next_token ⇒ String
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated.
Instance Attribute Details
#engine_versions ⇒ Array<Types::EngineVersion>
A list of engine versions that are available to choose from.
2506 2507 2508 2509 2510 2511 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2506 class ListEngineVersionsOutput < Struct.new( :engine_versions, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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.
2506 2507 2508 2509 2510 2511 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2506 class ListEngineVersionsOutput < Struct.new( :engine_versions, :next_token) SENSITIVE = [] include Aws::Structure end |