Module Values.UpdateCognitoUserPoolConfigurationSource

Contains configuration details of a Amazon Cognito user pool for use with an identity source.

Sourcetype nonrec t = {
  1. userPoolArn : UserPoolArn.t;
    (*

    The Amazon Resource Name (ARN) of the Amazon Cognito user pool associated with this identity source.

    *)
  2. clientIds : ClientIds.t option;
    (*

    The client ID of an app client that is configured for the specified Amazon Cognito user pool.

    *)
  3. groupConfiguration : UpdateCognitoGroupConfiguration.t option;
    (*

    The configuration of the user groups from an Amazon Cognito user pool identity source.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientIds:??? -> ?groupConfiguration:??? -> userPoolArn:UserPoolArn.t -> unit -> t
Sourceval 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 ]
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