Class: Aws::DataZone::Types::GroupPolicyGrantPrincipal
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::GroupPolicyGrantPrincipal
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Note:
GroupPolicyGrantPrincipal is a union - when making an API calls you must set exactly one of the members.
Note:
GroupPolicyGrantPrincipal is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of GroupPolicyGrantPrincipal corresponding to the set member.
The group principal to whom the policy is granted.
Direct Known Subclasses
Defined Under Namespace
Classes: GroupIdentifier, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_identifier ⇒ String
The ID Of the group of the group principal.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#group_identifier ⇒ String
The ID Of the group of the group principal.
10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10712 class GroupPolicyGrantPrincipal < Struct.new( :group_identifier, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class GroupIdentifier < GroupPolicyGrantPrincipal; end class Unknown < GroupPolicyGrantPrincipal; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
10712 10713 10714 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10712 def unknown @unknown end |