Module Values.IdentitySourceDetailsSource

A structure that contains configuration of the identity source. This data type was a response parameter for the GetIdentitySource operation. Replaced by ConfigurationDetail.

Sourcetype nonrec t = {
  1. clientIds : ClientIds.t option;
    (*

    The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.

    *)
  2. userPoolArn : UserPoolArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.

    *)
  3. discoveryUrl : DiscoveryUrl.t option;
    (*

    The well-known URL that points to this user pool's OIDC discovery endpoint. This is a URL string in the following format. This URL replaces the placeholders for both the Amazon Web Services Region and the user pool identifier with those appropriate for this user pool. https://cognito-idp.<region>.amazonaws.com/<user-pool-id>/.well-known/openid-configuration

    *)
  4. openIdIssuer : OpenIdIssuer.t option;
    (*

    A string that identifies the type of OIDC service represented by this identity source. At this time, the only valid value is cognito.

    *)
}
Sourceval make : ?clientIds:??? -> ?userPoolArn:??? -> ?discoveryUrl:??? -> ?openIdIssuer:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of ClientId.t ] list | `String of UserPoolArn.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