Module Values.GetBackendRespObjSource

The response object for this operation.

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

    A stringified version of the cli.json file for your Amplify project.

    *)
  2. amplifyMetaConfig : string option;
    (*

    A stringified version of the current configs for your Amplify project.

    *)
  3. appId : string;
    (*

    The app ID.

    *)
  4. appName : string option;
    (*

    The name of the app.

    *)
  5. backendEnvironmentList : string list option;
    (*

    A list of backend environments in an array.

    *)
  6. backendEnvironmentName : string option;
    (*

    The name of the backend environment.

    *)
  7. error : string option;
    (*

    If the request failed, this is the returned error.

    *)
}
Sourceval context_ : string
Sourceval make : ?amplifyFeatureFlags:??? -> ?amplifyMetaConfig:??? -> ?appName:??? -> ?backendEnvironmentList:??? -> ?backendEnvironmentName:??? -> ?error:??? -> appId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `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