Module Values.ResourceCountSource

An object that contains the resource type and the number of resources.

Sourcetype nonrec t = {
  1. resourceType : ResourceType.t option;
    (*

    The resource type (for example, "AWS::EC2::Instance").

    *)
  2. count : Long.t option;
    (*

    The number of resources.

    *)
}
Sourceval make : ?resourceType:??? -> ?count:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.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