Class: Aws::Athena::Types::ListNotebookSessionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ListNotebookSessionsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated.
-
#notebook_sessions_list ⇒ Array<Types::NotebookSessionSummary>
A list of the sessions belonging to the notebook.
Instance Attribute Details
#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.
2521 2522 2523 2524 2525 2526 |
# File 'lib/aws-sdk-athena/types.rb', line 2521 class ListNotebookSessionsResponse < Struct.new( :notebook_sessions_list, :next_token) SENSITIVE = [] include Aws::Structure end |
#notebook_sessions_list ⇒ Array<Types::NotebookSessionSummary>
A list of the sessions belonging to the notebook.
2521 2522 2523 2524 2525 2526 |
# File 'lib/aws-sdk-athena/types.rb', line 2521 class ListNotebookSessionsResponse < Struct.new( :notebook_sessions_list, :next_token) SENSITIVE = [] include Aws::Structure end |