Module Values.S3LocationSource

Information about the location of application artifacts stored in Amazon S3.

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

    The name of the Amazon S3 bucket where the application revision is stored.

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

    The name of the Amazon S3 object that represents the bundled artifacts for the application revision.

    *)
  3. 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.

    *)
  4. 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.

    *)
  5. 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.

    *)
}
Sourceval make : ?bucket:??? -> ?key:??? -> ?bundleType:??? -> ?version:??? -> ?eTag:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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