Topic 1 Question 464
A developer is using AWS CloudFormation to deploy an AWS Lambda function. The developer needs to set the Lambda function's timeout value based on the environment parameter of the template. The template contains mappings of EnvironmentData for each environment's timeout value. The environment parameter and EnvironmentData mappings are as follows:
Environment parameter:
EnvironmentData mappings:
Which statement will meet these requirements?
Timeout: !GetAtt [EnvironmentData, !Ref Environment, Timeout]
Timeout: !FindInMap [EnvironmentData, !Ref Environment, Timeout]
Timeout: !Select [EnvironmentData, !Ref Environment, Timeout]
Timeout: !ForEach[EnvironmentData, !Ref Environment, Timeout]
ユーザの投票
コメント(1)
- 正解だと思う選択肢: B
!FindInMap is an intrinsic function used to retrieve a value from a mapping
👍 2ShakthiGCP2024/12/12
シャッフルモード