Class: Aws::DataZone::Types::SubscribedPrincipalInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::SubscribedPrincipalInput
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Note:
SubscribedPrincipalInput is a union - when making an API calls you must set exactly one of the members.
The principal that is to be given a subscriptiong grant.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#project ⇒ Types::SubscribedProjectInput
The project that is to be given a subscription grant.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#project ⇒ Types::SubscribedProjectInput
The project that is to be given a subscription grant.
18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 18801 class SubscribedPrincipalInput < Struct.new( :project, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Project < SubscribedPrincipalInput; end class Unknown < SubscribedPrincipalInput; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
18801 18802 18803 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 18801 def unknown @unknown end |