Module Values_1.LogicalTableSourceSource

Information about the source of a logical table. 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. joinInstruction : JoinInstruction.t option;
    (*

    Specifies the result of a join of two logical tables.

    *)
  2. physicalTableId : PhysicalTableId.t option;
    (*

    Physical table ID.

    *)
  3. dataSetArn : Values_0.Arn.t option;
    (*

    The Amazon Resource Number (ARN) of the parent dataset.

    *)
}
Sourceval make : ?joinInstruction:??? -> ?physicalTableId:??? -> ?dataSetArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PhysicalTableId.t | `Structure of (string * [> `Enum of string | `String of LogicalTableId.t | `Structure of (string * [> `Boolean of Values_0.Boolean.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