Class: Aws::VerifiedPermissions::Types::OpenIdConnectGroupConfigurationItem

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-verifiedpermissions/types.rb

Overview

The claim in OIDC identity provider tokens that indicates a user’s group membership, and the entity type that you want to map it to. For example, this object can map the contents of a ‘groups` claim to `MyCorp::UserGroup`.

This data type is part of a [OpenIdConnectConfigurationItem] structure, which is a parameter of [ListIdentitySourcea].

[1]: docs.aws.amazon.com/verifiedpermissions/latest/apireference/API_OpenIdConnectConfigurationItem.html [2]: docs.aws.amazon.com/verifiedpermissions/latest/apireference/API_ListIdentitySources.html

Constant Summary collapse

SENSITIVE =
[:group_claim, :group_entity_type]

Instance Attribute Summary collapse

Instance Attribute Details

#group_claimString

The token claim that you want Verified Permissions to interpret as group membership. For example, ‘groups`.

Returns:

  • (String)


2971
2972
2973
2974
2975
2976
# File 'lib/aws-sdk-verifiedpermissions/types.rb', line 2971

class OpenIdConnectGroupConfigurationItem < Struct.new(
  :group_claim,
  :group_entity_type)
  SENSITIVE = [:group_claim, :group_entity_type]
  include Aws::Structure
end

#group_entity_typeString

The policy store entity type that you want to map your users’ group claim to. For example, ‘MyCorp::UserGroup`. A group entity type is an entity that can have a user entity type as a member.

Returns:

  • (String)


2971
2972
2973
2974
2975
2976
# File 'lib/aws-sdk-verifiedpermissions/types.rb', line 2971

class OpenIdConnectGroupConfigurationItem < Struct.new(
  :group_claim,
  :group_entity_type)
  SENSITIVE = [:group_claim, :group_entity_type]
  include Aws::Structure
end