gpt4 book ai didi

java - 从 Java Lambda 访问 Cloudformation 参数

转载 作者:行者123 更新时间:2023-11-30 06:02:07 25 4
gpt4 key购买 nike

我有一个 lambda 函数,其环境变量在云形成模板中定义如下。

Parameters:
Parameter1: { Type: String }
Resources:
LambdaFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: "Function"
CodeUri: // relevant parameters
Handler: handler::handlerequest
Role: //Role
Runtime: java8
Timeout: 300
Environment:
Variables:
refParamter1:
Ref: Parameter1

我的处理请求的代码如下:

String referenceParameter = System.getenv("refParamter1");
System.out.println("Referenced Paramter "+ referenceParameter );

当我部署它并触发我的 lambda 时,它会为打印的 referenceParameter 提供 null

在 lambda 中引用环境变量时使用 System.getenv 是否不正确?

有一个类似的问题:CloudFormation - Access Parameter from Lambda Code对于 python,但没有为 Java 提供任何答案

这是一个问题,其答案建议使用System.getenv:Accessing AWS Lambda environment variables in Java code

最佳答案

如果我是正确的,您正在尝试从资源引用参数,那么您的语法是错误的,请尝试以下操作:

  Environment:
Variables:
refParamter1: !Ref Parameter1

环境变量定义是一个key:value的数组,你可以在这里查看文档https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-environment.html

部署时,请确保转到 lambda 控制台并检查它是否正确显示在函数 UI 中的环境变量下,然后您可以使用:

String referenceParameter = System.getenv("refParamter1");

访问您的变量。

干杯

关于java - 从 Java Lambda 访问 Cloudformation 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52038560/

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