Class: Aws::DataZone::Types::SubscribedPrincipal
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::SubscribedPrincipal
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Note:
SubscribedPrincipal is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SubscribedPrincipal corresponding to the set member.
The principal that has the subscription grant for the asset.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#project ⇒ Types::SubscribedProject
The project that has the subscription grant.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#project ⇒ Types::SubscribedProject
The project that has the subscription grant.
17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17636 class SubscribedPrincipal < Struct.new( :project, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Project < SubscribedPrincipal; end class Unknown < SubscribedPrincipal; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
17636 17637 17638 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17636 def unknown @unknown end |