Class: Aws::DataZone::Types::GrantedEntity
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::GrantedEntity
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#listing ⇒ Types::ListingRevision
The listing for which a subscription is granted.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#listing ⇒ Types::ListingRevision
The listing for which a subscription is granted.
10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10616 class GrantedEntity < Struct.new( :listing, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Listing < GrantedEntity; end class Unknown < GrantedEntity; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
10616 10617 10618 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10616 def unknown @unknown end |