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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datazone/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, Unknown

Defined Under Namespace

Classes: AssetListing, 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.



9547
9548
9549
9550
9551
9552
9553
9554
9555
9556
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 9547

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

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



9547
9548
9549
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 9547

def unknown
  @unknown
end