Module Values.S3ConfigurationSource

Provides a description of an Amazon S3 data source, including the Amazon Resource Name (ARN) of the S3 bucket, the ARN of the IAM role that is used to access the bucket, and the name of the Amazon S3 object that contains the data.

Sourcetype nonrec t = {
  1. roleARN : RoleARN.t;
    (*

    IAM ARN of the role used to access the data.

    *)
  2. bucketARN : BucketARN.t;
    (*

    ARN of the S3 bucket that contains the data.

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

    The name of the object that contains the data.

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