Module Values.ServiceMetadataSource

The metadata that's associated with the Amazon Web Services service.

Sourcetype nonrec t = {
  1. name : AWSServiceName.t option;
    (*

    The name of the Amazon Web Services service.

    *)
  2. displayName : NonEmptyString.t option;
    (*

    The display name of the Amazon Web Services service.

    *)
  3. description : NonEmptyString.t option;
    (*

    The description of the Amazon Web Services service.

    *)
  4. category : NonEmptyString.t option;
    (*

    The category that the Amazon Web Services service belongs to, such as compute, storage, or database.

    *)
}
Sourceval make : ?name:??? -> ?displayName:??? -> ?description:??? -> ?category:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AWSServiceName.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