Class: Aws::DataZone::Types::ResultItem

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

Overview

Note:

ResultItem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResultItem corresponding to the set member.

Resulting entity from the query.

Direct Known Subclasses

LineageNode, Unknown

Defined Under Namespace

Classes: LineageNode, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#lineage_nodeTypes::LineageNodeItem

Resulting data lineage node from the query.



18046
18047
18048
18049
18050
18051
18052
18053
18054
18055
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 18046

class ResultItem < Struct.new(
  :lineage_node,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class LineageNode < ResultItem; end
  class Unknown < ResultItem; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



18046
18047
18048
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 18046

def unknown
  @unknown
end