Module Values.OpenIdConnectGroupConfigurationDetailSource

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 OpenIdConnectConfigurationDetail structure, which is a parameter of GetIdentitySource.

Sourcetype nonrec t = {
  1. groupClaim : Claim.t option;
    (*

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

    *)
  2. groupEntityType : GroupEntityType.t option;
    (*

    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.

    *)
}
Sourceval make : ?groupClaim:??? -> ?groupEntityType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Claim.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t