Class: Aws::DataZone::Types::GrantedEntityInput

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

Overview

Note:

GrantedEntityInput is a union - when making an API calls you must set exactly one of the members.

The details of a listing for which a subscription is to be granted.

Direct Known Subclasses

Listing, Unknown

Defined Under Namespace

Classes: Listing, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#listingTypes::ListingRevisionInput

The listing for which a subscription is to be granted.



10679
10680
10681
10682
10683
10684
10685
10686
10687
10688
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10679

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

  class Listing < GrantedEntityInput; end
  class Unknown < GrantedEntityInput; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



10679
10680
10681
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10679

def unknown
  @unknown
end