Module Values.BackendAPIAppSyncAuthSettingsSource

The authentication settings for accessing provisioned data models in your Amplify project.

Sourcetype nonrec t = {
  1. cognitoUserPoolId : string option;
    (*

    The Amazon Cognito user pool ID, if Amazon Cognito was used as an authentication setting to access your data models.

    *)
  2. description : string option;
    (*

    The API key description for API_KEY, if it was used as an authentication mechanism to access your data models.

    *)
  3. expirationTime : float option;
    (*

    The API key expiration time for API_KEY, if it was used as an authentication mechanism to access your data models.

    *)
  4. openIDAuthTTL : string option;
    (*

    The expiry time for the OpenID authentication mechanism.

    *)
  5. openIDClientId : string option;
    (*

    The clientID for openID, if openID was used as an authentication setting to access your data models.

    *)
  6. openIDIatTTL : string option;
    (*

    The expiry time for the OpenID authentication mechanism.

    *)
  7. openIDIssueURL : string option;
    (*

    The openID issuer URL, if openID was used as an authentication setting to access your data models.

    *)
  8. openIDProviderName : string option;
    (*

    The OpenID provider name, if OpenID was used as an authentication mechanism to access your data models.

    *)
}
Sourceval make : ?cognitoUserPoolId:??? -> ?description:??? -> ?expirationTime:??? -> ?openIDAuthTTL:??? -> ?openIDClientId:??? -> ?openIDIatTTL:??? -> ?openIDIssueURL:??? -> ?openIDProviderName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of float | `String of string ]) 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