Class: Aws::DataZone::Types::GroupPolicyGrantPrincipal

Inherits:
Struct
  • Object
show all
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

GroupIdentifier, Unknown

Defined Under Namespace

Classes: GroupIdentifier, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#group_identifierString

The ID Of the group of the group principal.

Returns:

  • (String)


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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



10712
10713
10714
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10712

def unknown
  @unknown
end