Module Values.SampleDocumentsSource

Describes a structure that contains the Amazon S3 bucket and an array of the corresponding keys used to identify the location for your sample documents.

Sourcetype nonrec t = {
  1. bucketName : BucketName.t;
    (*

    Contains the Amazon S3 bucket that is used to hold your sample documents.

    *)
  2. keys : KeyList.t;
    (*

    Contains an array of the Amazon S3 keys used to identify the location for your sample documents.

    *)
}
Sourceval context_ : string
Sourceval make : bucketName:BucketName.t -> keys:KeyList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of S3Key.t ]) list ] list | `String of BucketName.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