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)


10904
10905
10906
10907
10908
10909
10910
10911
10912
10913
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10904

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



10904
10905
10906
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10904

def unknown
  @unknown
end