Class: Aws::NeptuneGraph::Types::ListPrivateGraphEndpointsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::NeptuneGraph::Types::ListPrivateGraphEndpointsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptunegraph/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#graph_identifier ⇒ String
The unique identifier of the Neptune Analytics graph.
-
#max_results ⇒ Integer
The total number of records to return in the command’s output.
-
#next_token ⇒ String
Pagination token used to paginate output.
Instance Attribute Details
#graph_identifier ⇒ String
The unique identifier of the Neptune Analytics graph.
2175 2176 2177 2178 2179 2180 2181 |
# File 'lib/aws-sdk-neptunegraph/types.rb', line 2175 class ListPrivateGraphEndpointsInput < Struct.new( :graph_identifier, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The total number of records to return in the command’s output.
If the total number of records available is more than the value specified, ‘nextToken` is provided in the command’s output. To resume pagination, provide the ‘nextToken` output value in the `nextToken` argument of a subsequent command. Do not use the `nextToken` response element directly outside of the Amazon CLI.
2175 2176 2177 2178 2179 2180 2181 |
# File 'lib/aws-sdk-neptunegraph/types.rb', line 2175 class ListPrivateGraphEndpointsInput < Struct.new( :graph_identifier, :next_token, :max_results) 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.
2175 2176 2177 2178 2179 2180 2181 |
# File 'lib/aws-sdk-neptunegraph/types.rb', line 2175 class ListPrivateGraphEndpointsInput < Struct.new( :graph_identifier, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |