Module Values.GetGlyphsResponseSource

GetGlyphs returns the map's glyphs. For more information, see Style labels with glyphs in the Amazon Location Service Developer Guide.

Sourcetype nonrec t = {
  1. blob : Blob.t option;
    (*

    The Glyph, as a binary blob.

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

    Header that represents the format of the response. The response returns the following as the HTTP body.

    *)
  3. cacheControl : String_.t option;
    (*

    Header that instructs caching configuration for the client.

    *)
  4. eTag : String_.t option;
    (*

    The glyph's Etag.

    *)
}
Sourcetype nonrec error = [
  1. | `Unknown_operation_error of string * string option
]
Sourceval make : ?blob:??? -> ?contentType:??? -> ?cacheControl:??? -> ?eTag:??? -> unit -> t
Sourceval error_of_json : 'a -> Yojson.Safe.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_of_xml : 'a -> Awso.Xml.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval of_header_and_body : ((string, String_.t) Awso.Import.List.Assoc.t * Blob.t) -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of Blob.t | `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