Class: Aws::DataZone::Types::GrantedEntity

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

Overview

Note:

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

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

Direct Known Subclasses

Listing, Unknown

Defined Under Namespace

Classes: Listing, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#listingTypes::ListingRevision

The listing for which a subscription is granted.



6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 6609

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

  class Listing < GrantedEntity; end
  class Unknown < GrantedEntity; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6609
6610
6611
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 6609

def unknown
  @unknown
end