Module Values.InputDataConfigSource

The input properties for an entities detection job. This includes the name of the S3 bucket and the path to the files to be analyzed.

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

    The URI of the S3 bucket that contains the input data. The bucket must be in the same region as the API endpoint that you are calling.

    *)
  2. s3Key : S3Key.t option;
    (*

    The path to the input data files in the S3 bucket.

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