Module Values.PreparedStatementSource

A prepared SQL statement for use with Athena.

Sourcetype nonrec t = {
  1. statementName : StatementName.t option;
    (*

    The name of the prepared statement.

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

    The query string for the prepared statement.

    *)
  3. workGroupName : WorkGroupName.t option;
    (*

    The name of the workgroup to which the prepared statement belongs.

    *)
  4. description : DescriptionString.t option;
    (*

    The description of the prepared statement.

    *)
  5. lastModifiedTime : Date.t option;
    (*

    The last modified time of the prepared statement.

    *)
}
Sourceval make : ?statementName:??? -> ?queryStatement:??? -> ?workGroupName:??? -> ?description:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of StatementName.t | `Timestamp of Date.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