Module Values.S3ReferenceDataSourceSource

For a SQL-based Kinesis Data Analytics application, identifies the Amazon S3 bucket and object that contains the reference data. A SQL-based Kinesis Data Analytics application loads reference data only once. If the data changes, you call the UpdateApplication operation to trigger reloading of data into your application.

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

    The Amazon Resource Name (ARN) of the S3 bucket.

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

    The object key name containing the reference data.

    *)
}
Sourceval make : ?bucketARN:??? -> ?fileKey:??? -> 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