Module Values.S3FileLocationSource

Specifies the details for the file location for the file that's being used in the workflow. Only applicable if you are using S3 storage.

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

    Specifies the S3 bucket that contains the file being used.

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

    The name assigned to the file when it was created in Amazon S3. You use the object key to retrieve the object.

    *)
  3. versionId : S3VersionId.t option;
    (*

    Specifies the file version.

    *)
  4. etag : S3Etag.t option;
    (*

    The entity tag is a hash of the object. The ETag reflects changes only to the contents of an object, not its metadata.

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