Module Values.RequestWidgetSource

Contains information about a widget on a CloudTrail Lake dashboard.

Sourcetype nonrec t = {
  1. queryStatement : QueryStatement.t;
    (*

    The query statement for the widget. For custom dashboard widgets, you can query across multiple event data stores as long as all event data stores exist in your account. When a query uses ? with eventTime, ? must be surrounded by single quotes as follows: '?'.

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

    The optional query parameters. The following query parameters are valid: $StartTime$, $EndTime$, and $Period$.

    *)
  3. viewProperties : ViewPropertiesMap.t;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : ?queryParameters:??? -> queryStatement:QueryStatement.t -> viewProperties:ViewPropertiesMap.t -> 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 QueryStatement.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