Class: Aws::NeptuneGraph::Types::ListGraphsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::NeptuneGraph::Types::ListGraphsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptunegraph/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#graphs ⇒ Array<Types::GraphSummary>
A list of the graphs.
-
#next_token ⇒ String
Pagination token used to paginate output.
Instance Attribute Details
#graphs ⇒ Array<Types::GraphSummary>
A list of the graphs.
2093 2094 2095 2096 2097 2098 |
# File 'lib/aws-sdk-neptunegraph/types.rb', line 2093 class ListGraphsOutput < Struct.new( :graphs, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Pagination token used to paginate output.
When this value is provided as input, the service returns results from where the previous response left off. When this value is present in output, it indicates that there are more results to retrieve.
2093 2094 2095 2096 2097 2098 |
# File 'lib/aws-sdk-neptunegraph/types.rb', line 2093 class ListGraphsOutput < Struct.new( :graphs, :next_token) SENSITIVE = [] include Aws::Structure end |