Values.UpdateCognitoUserPoolConfigurationSourceContains configuration details of a Amazon Cognito user pool for use with an identity source.
type nonrec t = {userPoolArn : UserPoolArn.t;The Amazon Resource Name (ARN) of the Amazon Cognito user pool associated with this identity source.
*)clientIds : ClientIds.t option;The client ID of an app client that is configured for the specified Amazon Cognito user pool.
*)groupConfiguration : UpdateCognitoGroupConfiguration.t option;The configuration of the user groups from an Amazon Cognito user pool identity source.
*)}val make :
?clientIds:??? ->
?groupConfiguration:??? ->
userPoolArn:UserPoolArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of ClientId.t ] list
| `String of UserPoolArn.t
| `Structure of (string * [> `String of GroupEntityType.t ]) list ])
list ]