如何配置lambda服务

时间:2016-01-19 00:54:17

标签: aws-lambda amazon-cloudformation

假设我正在通过CF部署AWS lambda应用程序。如何将任何配置参数传递给它?

例如,我想传递一个生成的存储区引用,因此可以在代码中使用它。

1 个答案:

答案 0 :(得分:0)

这是lambda函数的有效cloudformation参数

{
   "Type" : "AWS::Lambda::Function",
   "Properties" : {
   "Code" : Code,
   "Description" : String,
   "Handler" : String,
   "MemorySize" : Integer,
   "Role" : String,
   "Runtime" : String,
   "Timeout" : Integer
 }
}

如果要在模板中传递由您定义的参数,可以在参数部分指定并使用ref和join函数 有关更多信息,请参阅:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/parameters-section-structure.html

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-join.html

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-ref.html