Class: Aws::DataZone::Types::SearchResultItem

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-datazone/types.rb

Overview

Note:

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

The details of the results of the ‘SearchListings` action.

Direct Known Subclasses

AssetListing, DataProductListing, Unknown

Defined Under Namespace

Classes: AssetListing, DataProductListing, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#asset_listingTypes::AssetListingItem

The asset listing included in the results of the ‘SearchListings` action.



17611
17612
17613
17614
17615
17616
17617
17618
17619
17620
17621
17622
# File 'lib/aws-sdk-datazone/types.rb', line 17611

class SearchResultItem < Struct.new(
  :asset_listing,
  :data_product_listing,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class AssetListing < SearchResultItem; end
  class DataProductListing < SearchResultItem; end
  class Unknown < SearchResultItem; end
end

#data_product_listingTypes::DataProductListingItem

The data product listing.



17611
17612
17613
17614
17615
17616
17617
17618
17619
17620
17621
17622
# File 'lib/aws-sdk-datazone/types.rb', line 17611

class SearchResultItem < Struct.new(
  :asset_listing,
  :data_product_listing,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class AssetListing < SearchResultItem; end
  class DataProductListing < SearchResultItem; end
  class Unknown < SearchResultItem; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



17611
17612
17613
# File 'lib/aws-sdk-datazone/types.rb', line 17611

def unknown
  @unknown
end