Module Values.BackendAPIResourceConfigSource

The resource config for the data model, configured as a part of the Amplify project.

Sourcetype nonrec t = {
  1. additionalAuthTypes : ListOfBackendAPIAuthType.t option;
    (*

    Additional authentication methods used to interact with your data models.

    *)
  2. apiName : string option;
    (*

    The API name used to interact with the data model, configured as a part of your Amplify project.

    *)
  3. conflictResolution : BackendAPIConflictResolution.t option;
    (*

    The conflict resolution strategy for your data stored in the data models.

    *)
  4. defaultAuthType : BackendAPIAuthType.t option;
    (*

    The default authentication type for interacting with the configured data models in your Amplify project.

    *)
  5. service : string option;
    (*

    The service used to provision and interact with the data model.

    *)
  6. transformSchema : string option;
    (*

    The definition of the data model in the annotated transform of the GraphQL schema.

    *)
}
Sourceval make : ?additionalAuthTypes:??? -> ?apiName:??? -> ?conflictResolution:??? -> ?defaultAuthType:??? -> ?service:??? -> ?transformSchema:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Double of float | `String of string ]) list ]) list ] list | `String of string | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Double of float | `String of string ]) list ]) list ]) 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