Class: Aws::DataZone::Types::SearchResultItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::SearchResultItem
- 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
Defined Under Namespace
Classes: AssetListing, DataProductListing, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#asset_listing ⇒ Types::AssetListingItem
The asset listing included in the results of the
SearchListings
action. -
#data_product_listing ⇒ Types::DataProductListingItem
The data product listing.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#asset_listing ⇒ Types::AssetListingItem
The asset listing included in the results of the SearchListings
action.
16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 16640 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_listing ⇒ Types::DataProductListingItem
The data product listing.
16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 16640 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
16640 16641 16642 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 16640 def unknown @unknown end |