Module Values.S3BucketDefinitionForJobSource

Specifies an Amazon Web Services account that owns S3 buckets for a classification job to analyze, and one or more specific buckets to analyze for that account.

Sourcetype nonrec t = {
  1. accountId : string;
    (*

    The unique identifier for the Amazon Web Services account that owns the buckets.

    *)
  2. buckets : string list;
    (*

    An array that lists the names of the buckets.

    *)
}
Sourceval context_ : string
Sourceval make : accountId:string -> buckets:string list -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `String of string ]) 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