Class: Aws::DataZone::Types::SubscribedListingItem

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

Overview

Note:

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

The published asset for which the subscription grant is created.

Direct Known Subclasses

AssetListing, ProductListing, Unknown

Defined Under Namespace

Classes: AssetListing, ProductListing, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#asset_listingTypes::SubscribedAssetListing

The asset for which the subscription grant is created.



14475
14476
14477
14478
14479
14480
14481
14482
14483
14484
14485
14486
# File 'lib/aws-sdk-datazone/types.rb', line 14475

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

  class AssetListing < SubscribedListingItem; end
  class ProductListing < SubscribedListingItem; end
  class Unknown < SubscribedListingItem; end
end

#product_listingTypes::SubscribedProductListing

The data product listing.



14475
14476
14477
14478
14479
14480
14481
14482
14483
14484
14485
14486
# File 'lib/aws-sdk-datazone/types.rb', line 14475

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

  class AssetListing < SubscribedListingItem; end
  class ProductListing < SubscribedListingItem; end
  class Unknown < SubscribedListingItem; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



14475
14476
14477
# File 'lib/aws-sdk-datazone/types.rb', line 14475

def unknown
  @unknown
end