Class: Aws::NeptuneGraph::Types::EdgeStructure

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb

Overview

Contains information about an edge in a Neptune Analytics graph.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#countInteger

The number of instances of the edge in the graph.

Returns:

  • (Integer)


804
805
806
807
808
809
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 804

class EdgeStructure < Struct.new(
  :count,
  :edge_properties)
  SENSITIVE = []
  include Aws::Structure
end

#edge_propertiesArray<String>

A list of the properties associated with the edge.

Returns:

  • (Array<String>)


804
805
806
807
808
809
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 804

class EdgeStructure < Struct.new(
  :count,
  :edge_properties)
  SENSITIVE = []
  include Aws::Structure
end