Module Values.AwsLambdaFunctionCodeSource

The code for the Lambda function. You can specify either an object in Amazon S3, or upload a deployment package directly.

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

    An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account.

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

    The Amazon S3 key of the deployment package.

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

    For versioned objects, the version of the deployment package object to use.

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

    The base64-encoded contents of the deployment package. 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 * [> `String of NonEmptyString.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