Method: Aws::NeptuneGraph::Types::GraphDataSummary#num_nodes

Defined in:
lib/aws-sdk-neptunegraph/types.rb

#num_nodesInteger

The number of nodes in the graph.

Returns:

  • (Integer)


1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
# File 'lib/aws-sdk-neptunegraph/types.rb', line 1688

class GraphDataSummary < Struct.new(
  :num_nodes,
  :num_edges,
  :num_node_labels,
  :num_edge_labels,
  :node_labels,
  :edge_labels,
  :num_node_properties,
  :num_edge_properties,
  :node_properties,
  :edge_properties,
  :total_node_property_values,
  :total_edge_property_values,
  :node_structures,
  :edge_structures)
  SENSITIVE = []
  include Aws::Structure
end