Module Values_1.CustomSqlSource

A physical table type built from the results of the custom SQL query.

Sourcetype nonrec t = {
  1. dataSourceArn : Values_0.Arn.t;
    (*

    The Amazon Resource Name (ARN) of the data source.

    *)
  2. name : CustomSqlName.t;
    (*

    A display name for the SQL query result.

    *)
  3. sqlQuery : SqlQuery.t;
    (*

    The SQL query.

    *)
  4. columns : InputColumnList.t option;
    (*

    The column schema from the SQL query result set.

    *)
}
Sourceval context_ : string
Sourceval make : ?columns:??? -> dataSourceArn:Values_0.Arn.t -> name:CustomSqlName.t -> sqlQuery:SqlQuery.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of Values_0.ColumnName.t ]) list ] list | `String of Values_0.Arn.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