Module Values.ServiceSource

The metadata for a service, such as the service code and available attribute names.

Sourcetype nonrec t = {
  1. serviceCode : String_.t option;
    (*

    The code for the Amazon Web Services service.

    *)
  2. attributeNames : AttributeNameList.t option;
    (*

    The attributes that are available for this service.

    *)
}
Sourceval make : ?serviceCode:??? -> ?attributeNames:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] 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