Class: Aws::DataZone::Types::SearchTypesResultItem

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

Overview

Note:

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

AssetTypeItem, FormTypeItem, Unknown

Defined Under Namespace

Classes: AssetTypeItem, FormTypeItem, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#asset_type_itemTypes::AssetTypeItem

The asset type included in the results of the SearchTypes action.



9680
9681
9682
9683
9684
9685
9686
9687
9688
9689
9690
9691
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 9680

class SearchTypesResultItem < Struct.new(
  :asset_type_item,
  :form_type_item,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class AssetTypeItem < SearchTypesResultItem; end
  class FormTypeItem < SearchTypesResultItem; end
  class Unknown < SearchTypesResultItem; end
end

#form_type_itemTypes::FormTypeData

The form type included in the results of the SearchTypes action.

Returns:



9680
9681
9682
9683
9684
9685
9686
9687
9688
9689
9690
9691
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 9680

class SearchTypesResultItem < Struct.new(
  :asset_type_item,
  :form_type_item,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class AssetTypeItem < SearchTypesResultItem; end
  class FormTypeItem < SearchTypesResultItem; end
  class Unknown < SearchTypesResultItem; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



9680
9681
9682
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 9680

def unknown
  @unknown
end