Module Values.LayerVersionContentInputSource

A ZIP archive that contains the contents of an Lambda layer. You can specify either an Amazon S3 location, or upload a layer archive directly.

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

    The Amazon S3 bucket of the layer archive.

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

    The Amazon S3 key of the layer archive.

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

    For versioned objects, the version of the layer archive object to use.

    *)
  4. zipFile : Blob.t option;
    (*

    The base64-encoded contents of the layer archive. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for you.

    *)
}
Sourceval make : ?s3Bucket:??? -> ?s3Key:??? -> ?s3ObjectVersion:??? -> ?zipFile:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of Blob.t | `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