Module Values.ImportBackendAuthRequestSource

The request body for ImportBackendAuth.

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

    The app ID.

    *)
  2. backendEnvironmentName : string;
    (*

    The name of the backend environment.

    *)
  3. identityPoolId : string option;
    (*

    The ID of the Amazon Cognito identity pool.

    *)
  4. nativeClientId : string;
    (*

    The ID of the Amazon Cognito native client.

    *)
  5. userPoolId : string;
    (*

    The ID of the Amazon Cognito user pool.

    *)
  6. webClientId : string;
    (*

    The ID of the Amazon Cognito web client.

    *)
}
Sourceval context_ : string
Sourceval make : ?identityPoolId:??? -> appId:string -> backendEnvironmentName:string -> nativeClientId:string -> userPoolId:string -> webClientId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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