Module Values.S3ReferenceDataSourceSource

Identifies the S3 bucket and object that contains the reference data. Also identifies the IAM role Amazon Kinesis Analytics can assume to read this object on your behalf. An Amazon Kinesis 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;
    (*

    Amazon Resource Name (ARN) of the S3 bucket.

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

    Object key name containing reference data.

    *)
  3. referenceRoleARN : RoleARN.t;
    (*

    ARN of the IAM role that the service can assume to read data on your behalf. This role must have permission for the s3:GetObject action on the object and trust policy that allows Amazon Kinesis Analytics service principal to assume this role.

    *)
}
Sourceval context_ : string
Sourceval make : bucketARN:BucketARN.t -> fileKey:FileKey.t -> referenceRoleARN:RoleARN.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