Module Values.CodeConfigurationSource

The structure of the customer code available within the running cluster.

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

    A unique name for the S3 bucket.

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

    The full S3 path (excluding bucket) to the .zip file. This file contains the code that is loaded onto the cluster when it's started.

    *)
  3. s3ObjectVersion : S3ObjectVersion.t option;
    (*

    The version of an S3 object.

    *)
}
Sourceval make : ?s3Bucket:??? -> ?s3Key:??? -> ?s3ObjectVersion:??? -> 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