Values.S3LocationSourceInformation about the location of application artifacts stored in Amazon S3.
type nonrec t = {bucket : S3Bucket.t option;The name of the Amazon S3 bucket where the application revision is stored.
*)key : S3Key.t option;The name of the Amazon S3 object that represents the bundled artifacts for the application revision.
*)bundleType : BundleType.t option;The file type of the application revision. Must be one of the following: tar: A tar archive file. tgz: A compressed tar archive file. zip: A zip archive file. YAML: A YAML-formatted file. JSON: A JSON-formatted file.
*)version : VersionId.t option;A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision. If the version is not specified, the system uses the most recent version by default.
*)eTag : ETag.t option;The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision. If the ETag is not specified as an input parameter, ETag validation of the object is skipped.
*)}val to_value :
t ->
[> `Structure of (string * [> `Enum of string | `String of S3Bucket.t ]) list ]