Module Values.GroupQuerySource

A mapping of a query attached to a resource group that determines the Amazon Web Services resources that are members of the group.

Sourcetype nonrec t = {
  1. groupName : GroupName.t option;
    (*

    The name of the resource group that is associated with the specified resource query.

    *)
  2. resourceQuery : ResourceQuery.t option;
    (*

    The resource query that determines which Amazon Web Services resources are members of the associated resource group.

    *)
}
Sourceval make : ?groupName:??? -> ?resourceQuery:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GroupName.t | `Structure of (string * [> `Enum of string | `String of Query.t ]) list ]) 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