Module Values_1.PhysicalTableSource

A view of a data source that contains information about the shape of the data in the underlying source. This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.

Sourcetype nonrec t = {
  1. relationalTable : RelationalTable.t option;
    (*

    A physical table type for relational data sources.

    *)
  2. customSql : CustomSql.t option;
    (*

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

    *)
  3. s3Source : S3Source.t option;
    (*

    A physical table type for as S3 data source.

    *)
  4. saaSTable : SaaSTable.t option;
    (*

    A physical table type for Software-as-a-Service (SaaS) sources.

    *)
}
Sourceval make : ?relationalTable:??? -> ?customSql:??? -> ?s3Source:??? -> ?saaSTable:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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 | `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `Integer of PositiveInteger.t | `String of Delimiter.t ]) list ]) 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