Module Values_1.SourceTableSource

A source table that provides initial data from either a physical table or parent dataset.

Sourcetype nonrec t = {
  1. physicalTableId : Values_0.DataSetEntityResourceId.t option;
    (*

    The identifier of the physical table that serves as the data source.

    *)
  2. dataSet : ParentDataSet.t option;
    (*

    A parent dataset that serves as the data source instead of a physical table.

    *)
}
Sourceval make : ?physicalTableId:??? -> ?dataSet:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.DataSetEntityResourceId.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 ]) 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