Class: Aws::DataZone::Types::SubscribedListingItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::SubscribedListingItem
- 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
Defined Under Namespace
Classes: AssetListing, ProductListing, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#asset_listing ⇒ Types::SubscribedAssetListing
The asset for which the subscription grant is created.
-
#product_listing ⇒ Types::SubscribedProductListing
The data product listing.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#asset_listing ⇒ Types::SubscribedAssetListing
The asset for which the subscription grant is created.
18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 |
# File 'lib/aws-sdk-datazone/types.rb', line 18589 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_listing ⇒ Types::SubscribedProductListing
The data product listing.
18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 |
# File 'lib/aws-sdk-datazone/types.rb', line 18589 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
18589 18590 18591 |
# File 'lib/aws-sdk-datazone/types.rb', line 18589 def unknown @unknown end |