Module Values.ServiceInfoSource

Information about an Amazon Web Services service.

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

    Specifies the service identifier. To find the service code value for an Amazon Web Services service, use the ListServices operation.

    *)
  2. serviceName : ServiceName.t option;
    (*

    Specifies the service name.

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