Module Values.S3ObjectSource

Contains information about an S3 bucket.

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

    The name of the specific S3 bucket.

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

    The Amazon Web Services Key Management Service (KMS key) key being used to encrypt the S3 object. Without this key, data in the bucket is not accessible.

    *)
}
Sourceval make : ?bucket:??? -> ?key:??? -> 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