Module Values_1.S3SourceSource

A physical table type for an S3 data source.

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

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

    *)
  2. uploadSettings : UploadSettings.t option;
    (*

    Information about the format for the S3 source file or files.

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

    A physical table type for an S3 data source. For files that aren't JSON, only STRING data types are supported in input columns.

    *)
}
Sourceval context_ : string
Sourceval make : ?uploadSettings:??? -> dataSourceArn:Values_0.Arn.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 | `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `Integer of PositiveInteger.t | `String of Delimiter.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