Module Values.S3ReferenceDataSourceUpdateSource

Describes the S3 bucket name, object key name, and IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object on your behalf and populate the in-application reference table.

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

    Amazon Resource Name (ARN) of the S3 bucket.

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

    Object key name.

    *)
  3. referenceRoleARNUpdate : RoleARN.t option;
    (*

    ARN of the IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object and populate the in-application.

    *)
}
Sourceval make : ?bucketARNUpdate:??? -> ?fileKeyUpdate:??? -> ?referenceRoleARNUpdate:??? -> 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