Module Values_1.RelationalTableSource

A physical table type for relational data sources.

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

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

    *)
  2. catalog : RelationalTableCatalog.t option;
    (*

    The catalog associated with a table.

    *)
  3. schema : RelationalTableSchema.t option;
    (*

    The schema name. This name applies to certain relational database engines.

    *)
  4. name : RelationalTableName.t;
    (*

    The name of the relational table.

    *)
  5. inputColumns : InputColumnList.t;
    (*

    The column schema of the table.

    *)
}
Sourceval context_ : string
Sourceval make : ?catalog:??? -> ?schema:??? -> dataSourceArn:Values_0.Arn.t -> name:RelationalTableName.t -> inputColumns:InputColumnList.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