Module Values.EnrichmentSourceS3ConfigurationSource

S3 configuration for the source import file to be enriched.

Sourcetype nonrec t = {
  1. s3Bucket : S3BucketName.t;
    (*

    The name of the S3 bucket containing the source import file.

    *)
  2. s3BucketOwner : AccountID.t;
    (*

    The AWS account ID of the S3 bucket owner.

    *)
  3. s3Key : S3KeyName.t;
    (*

    The S3 key (path) for the source import file.

    *)
}
Sourceval context_ : string
Sourceval make : s3Bucket:S3BucketName.t -> s3BucketOwner:AccountID.t -> s3Key:S3KeyName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3BucketName.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