Class: Aws::DataZone::Types::GroupPolicyGrantPrincipal
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::GroupPolicyGrantPrincipal
- Includes:
- Structure, Structure::Union
- Defined in:
- 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.
9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 |
# File 'lib/aws-sdk-datazone/types.rb', line 9054 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
9054 9055 9056 |
# File 'lib/aws-sdk-datazone/types.rb', line 9054 def unknown @unknown end |