gpt4 book ai didi

aws-lambda - 如何配置 lambda 服务

转载 作者:行者123 更新时间:2023-12-03 07:28:31 25 4
gpt4 key购买 nike

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

例如,我想传递生成的存储桶引用之一,以便可以在代码中使用它。

最佳答案

这是 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

关于aws-lambda - 如何配置 lambda 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34866782/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com