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

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

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)


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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



9054
9055
9056
# File 'lib/aws-sdk-datazone/types.rb', line 9054

def unknown
  @unknown
end