Module Values.WidgetSource

A widget on a CloudTrail Lake dashboard.

Sourcetype nonrec t = {
  1. queryAlias : QueryAlias.t option;
    (*

    The query alias used to identify the query for the widget.

    *)
  2. queryStatement : QueryStatement.t option;
    (*

    The SQL query statement for the widget.

    *)
  3. queryParameters : QueryParameters.t option;
    (*

    The query parameters for the widget.

    *)
  4. viewProperties : ViewPropertiesMap.t option;
    (*

    The view properties for the widget. For more information about view properties, see View properties for widgets in the CloudTrail User Guide..

    *)
}
Sourceval make : ?queryAlias:??? -> ?queryStatement:??? -> ?queryParameters:??? -> ?viewProperties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of QueryParameter.t ] list | `Map of ([> `String of ViewPropertiesKey.t ] * [> `String of ViewPropertiesValue.t ]) list | `String of QueryAlias.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