Class: Aws::Athena::Types::ListCalculationExecutionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ListCalculationExecutionsResponse
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#calculations ⇒ Array<Types::CalculationSummary>
A list of CalculationSummary objects.
-
#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
#calculations ⇒ Array<Types::CalculationSummary>
A list of CalculationSummary objects.
2330 2331 2332 2333 2334 2335 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2330 class ListCalculationExecutionsResponse < Struct.new( :next_token, :calculations) 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.
2330 2331 2332 2333 2334 2335 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2330 class ListCalculationExecutionsResponse < Struct.new( :next_token, :calculations) SENSITIVE = [] include Aws::Structure end |