Module Values.S3LocationSource

Contains information about the location in Amazon S3 where the select job results are stored.

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

    The name of the Amazon S3 bucket where the job results are stored.

    *)
  2. prefix : String_.t option;
    (*

    The prefix that is prepended to the results for this request.

    *)
  3. encryption : Encryption.t option;
    (*

    Contains information about the encryption used to store the job results in Amazon S3.

    *)
  4. cannedACL : CannedACL.t option;
    (*

    The canned access control list (ACL) to apply to the job results.

    *)
  5. accessControlList : AccessControlPolicyList.t option;
    (*

    A list of grants that control access to the staged results.

    *)
  6. tagging : Hashmap.t option;
    (*

    The tag-set that is applied to the job results.

    *)
  7. userMetadata : Hashmap.t option;
    (*

    A map of metadata to store with the job results in Amazon S3.

    *)
  8. storageClass : StorageClass.t option;
    (*

    The storage class used to store the job results.

    *)
}
Sourceval make : ?bucketName:??? -> ?prefix:??? -> ?encryption:??? -> ?cannedACL:??? -> ?accessControlList:??? -> ?tagging:??? -> ?userMetadata:??? -> ?storageClass:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) 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