Module Values.S3ConfigurationSource

For a SQL-based Kinesis Data Analytics application, provides a description of an Amazon S3 data source, including the Amazon Resource Name (ARN) of the S3 bucket and the name of the Amazon S3 object that contains the data.

Sourcetype nonrec t = {
  1. bucketARN : BucketARN.t;
    (*

    The ARN of the S3 bucket that contains the data.

    *)
  2. fileKey : FileKey.t;
    (*

    The name of the object that contains the data.

    *)
}
Sourceval context_ : string
Sourceval make : bucketARN:BucketARN.t -> fileKey:FileKey.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BucketARN.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