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.



6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 6630

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



6630
6631
6632
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 6630

def unknown
  @unknown
end