namespace Amazon.Lambda.Annotations { /// /// The deployment package type of the Lambda function. The supported values are Zip or Image. The default value is Zip. /// For more information, see here /// public enum LambdaPackageType { Zip=0, Image=1 } }