Class: Aws::VerifiedPermissions::Types::OpenIdConnectGroupConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::VerifiedPermissions::Types::OpenIdConnectGroupConfiguration
- Defined in:
- gems/aws-sdk-verifiedpermissions/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 OpenIdConnectConfiguration structure, which is a parameter of CreateIdentitySource.
Constant Summary collapse
- SENSITIVE =
[:group_claim, :group_entity_type]
Instance Attribute Summary collapse
-
#group_claim ⇒ String
The token claim that you want Verified Permissions to interpret as group membership.
-
#group_entity_type ⇒ String
The policy store entity type that you want to map your users' group claim to.
Instance Attribute Details
#group_claim ⇒ String
The token claim that you want Verified Permissions to interpret as
group membership. For example, groups
.
2750 2751 2752 2753 2754 2755 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 2750 class OpenIdConnectGroupConfiguration < Struct.new( :group_claim, :group_entity_type) SENSITIVE = [:group_claim, :group_entity_type] include Aws::Structure end |
#group_entity_type ⇒ String
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.
2750 2751 2752 2753 2754 2755 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 2750 class OpenIdConnectGroupConfiguration < Struct.new( :group_claim, :group_entity_type) SENSITIVE = [:group_claim, :group_entity_type] include Aws::Structure end |