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

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

Defined Under Namespace

Classes: AssetListing, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#asset_listingTypes::SubscribedAssetListing

The asset for which the subscription grant is created.



10165
10166
10167
10168
10169
10170
10171
10172
10173
10174
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10165

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

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



10165
10166
10167
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10165

def unknown
  @unknown
end