Class: Aws::DataZone::Types::SearchTypesResultItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::SearchTypesResultItem
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
SearchTypesResultItem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SearchTypesResultItem corresponding to the set member.
The details of the results of the SearchTypes
action.
Direct Known Subclasses
Defined Under Namespace
Classes: AssetTypeItem, FormTypeItem, LineageNodeTypeItem, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#asset_type_item ⇒ Types::AssetTypeItem
The asset type included in the results of the
SearchTypes
action. -
#form_type_item ⇒ Types::FormTypeData
The form type included in the results of the
SearchTypes
action. -
#lineage_node_type_item ⇒ Types::LineageNodeTypeItem
The details of a data lineage node type.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#asset_type_item ⇒ Types::AssetTypeItem
The asset type included in the results of the SearchTypes
action.
13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13303 class SearchTypesResultItem < Struct.new( :asset_type_item, :form_type_item, :lineage_node_type_item, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AssetTypeItem < SearchTypesResultItem; end class FormTypeItem < SearchTypesResultItem; end class LineageNodeTypeItem < SearchTypesResultItem; end class Unknown < SearchTypesResultItem; end end |
#form_type_item ⇒ Types::FormTypeData
The form type included in the results of the SearchTypes
action.
13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13303 class SearchTypesResultItem < Struct.new( :asset_type_item, :form_type_item, :lineage_node_type_item, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AssetTypeItem < SearchTypesResultItem; end class FormTypeItem < SearchTypesResultItem; end class LineageNodeTypeItem < SearchTypesResultItem; end class Unknown < SearchTypesResultItem; end end |
#lineage_node_type_item ⇒ Types::LineageNodeTypeItem
The details of a data lineage node type.
13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13303 class SearchTypesResultItem < Struct.new( :asset_type_item, :form_type_item, :lineage_node_type_item, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AssetTypeItem < SearchTypesResultItem; end class FormTypeItem < SearchTypesResultItem; end class LineageNodeTypeItem < SearchTypesResultItem; end class Unknown < SearchTypesResultItem; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
13303 13304 13305 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13303 def unknown @unknown end |