Method: Aws::NeptuneGraph::Types::GraphDataSummary#edge_structures
- Defined in:
- lib/aws-sdk-neptunegraph/types.rb
#edge_structures ⇒ Array<Types::EdgeStructure>
This field is only present when the requested mode is DETAILED. It contains a list of edge structures.
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 |