Module Values.DisplayContentOverridesSource

Contains any values that override the default configuration generated from API Gateway.

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

    By default, this is the documentation of your REST API from API Gateway. You can provide custom documentation to override this value.

    *)
  2. endpoint : string option;
    (*

    The URL for your REST API. By default, API Gateway uses the default execute API endpoint. You can provide a custom domain to override this value.

    *)
  3. operationName : string option;
    (*

    The operation name of the product REST endpoint.

    *)
}
Sourceval make : ?body:??? -> ?endpoint:??? -> ?operationName:??? -> 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