Module Values.AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsSource

Specifies the authorization configuration for using an OpenID Connect compliant service with your AppSync GraphQL API endpoint.

Sourcetype nonrec t = {
  1. authTtL : Long.t option;
    (*

    The number of milliseconds that a token is valid after being authenticated.

    *)
  2. clientId : NonEmptyString.t option;
    (*

    The client identifier of the relying party at the OpenID identity provider. This identifier is typically obtained when the relying party is registered with the OpenID identity provider. You can specify a regular expression so that AppSync can validate against multiple client identifiers at a time.

    *)
  3. iatTtL : Long.t option;
    (*

    The number of milliseconds that a token is valid after it's issued to a user.

    *)
  4. issuer : NonEmptyString.t option;
    (*

    The issuer for the OIDC configuration. The issuer returned by discovery must exactly match the value of iss in the ID token.

    *)
}
Sourceval make : ?authTtL:??? -> ?clientId:??? -> ?iatTtL:??? -> ?issuer:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of NonEmptyString.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