Module Values_1.SaaSTableSource

A table from a Software-as-a-Service (SaaS) data source, including connection details and column definitions.

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

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

    *)
  2. tablePath : TablePathElementList.t;
    (*

    The hierarchical path to the table within the SaaS data source.

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

    The list of input columns available from the SaaS table.

    *)
}
Sourceval context_ : string
Sourceval make : dataSourceArn:Values_0.Arn.t -> tablePath:TablePathElementList.t -> inputColumns:InputColumnList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of TablePathElementName.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