Module Values.ExportThemesResponseSource

Exports theme configurations to code that is ready to integrate into an Amplify app.

Sourcetype nonrec t = {
  1. entities : ThemeList.t option;
    (*

    Represents the configuration of the exported themes.

    *)
  2. nextToken : String_.t option;
    (*

    The pagination token that's included if more results are available.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `InvalidParameterException of InvalidParameterException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?entities:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `InvalidParameterException of InvalidParameterException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `InvalidParameterException of InvalidParameterException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * Awso.Botodata.value) list ] list | `String of String_.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