Class: Aws::DataZone::Types::ListingItem

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

Overview

Note:

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

The details of a listing (aka asset published in a Amazon DataZone catalog).

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::AssetListing

An asset published in an Amazon DataZone catalog.

Returns:



10935
10936
10937
10938
10939
10940
10941
10942
10943
10944
10945
10946
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10935

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

  class AssetListing < ListingItem; end
  class DataProductListing < ListingItem; end
  class Unknown < ListingItem; end
end

#data_product_listingTypes::DataProductListing

The data product listing.



10935
10936
10937
10938
10939
10940
10941
10942
10943
10944
10945
10946
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10935

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

  class AssetListing < ListingItem; end
  class DataProductListing < ListingItem; end
  class Unknown < ListingItem; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



10935
10936
10937
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10935

def unknown
  @unknown
end