Values.RegisterClientResponseSourceRegisters a public client with IAM Identity Center. This allows clients to perform authorization using the authorization code grant with Proof Key for Code Exchange (PKCE) or the device code grant.
type nonrec t = {clientId : ClientId.t option;The unique identifier string for each client. This client uses this identifier to get authenticated by the service in subsequent calls.
*)clientSecret : ClientSecret.t option;A secret string generated for the client. The client will use this string to get authenticated by the service in subsequent calls.
*)clientIdIssuedAt : LongTimeStampType.t option;Indicates the time at which the clientId and clientSecret were issued.
*)clientSecretExpiresAt : LongTimeStampType.t option;Indicates the time at which the clientId and clientSecret will become invalid.
*)tokenEndpoint : URI.t option;An endpoint that the client can use to create tokens.
*)}type nonrec error = [ | `InternalServerException of InternalServerException.t| `InvalidClientMetadataException of InvalidClientMetadataException.t| `InvalidRedirectUriException of InvalidRedirectUriException.t| `InvalidRequestException of InvalidRequestException.t| `InvalidScopeException of InvalidScopeException.t| `SlowDownException of SlowDownException.t| `UnsupportedGrantTypeException of UnsupportedGrantTypeException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `InternalServerException of InternalServerException.t
| `InvalidClientMetadataException of InvalidClientMetadataException.t
| `InvalidRedirectUriException of InvalidRedirectUriException.t
| `InvalidRequestException of InvalidRequestException.t
| `InvalidScopeException of InvalidScopeException.t
| `SlowDownException of SlowDownException.t
| `Unknown_operation_error of string * string option
| `UnsupportedGrantTypeException of UnsupportedGrantTypeException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `InternalServerException of InternalServerException.t
| `InvalidClientMetadataException of InvalidClientMetadataException.t
| `InvalidRedirectUriException of InvalidRedirectUriException.t
| `InvalidRequestException of InvalidRequestException.t
| `InvalidScopeException of InvalidScopeException.t
| `SlowDownException of SlowDownException.t
| `Unknown_operation_error of string * string option
| `UnsupportedGrantTypeException of UnsupportedGrantTypeException.t ]val to_value :
t ->
[> `Structure of
(string * [> `Long of LongTimeStampType.t | `String of ClientId.t ])
list ]