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.



18026
18027
18028
18029
18030
18031
18032
18033
18034
18035
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 18026

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



18026
18027
18028
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 18026

def unknown
  @unknown
end