s-6ren">
gpt4 book ai didi

amazon-web-services - 如何知道从 aws sam 模板创建 aws 资源时返回哪些属性

转载 作者:行者123 更新时间:2023-12-03 07:34:21 24 4
gpt4 key购买 nike

例如

AWSTemplateFormatVersion: "2010-09-09"
Transform: AWS::Serverless-2016-10-31
Description: >
sam stack

Resources:
MyLambdaFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: lambda_functions/my_lambda_function_code/
Handler: index.handler
Timeout: 15
Runtime: nodejs14.x

Outputs:
MyLambdaFunctionArn:
Description: "Arn of MyLambdaFunction "
Value: !GetAtt MyLambdaFunction.Arn

在上面的模板中,当创建 MyLambdaFunction 时,我知道它有一个名为 Arn 的属性,我可以像这样使用它 MyLambdaFunction.Arn。我想知道创建资源后还返回了多少个属性。

最佳答案

您可以在 CloudFormation 文档中查看每个资源的返回部分。

在本例中,Serverless::Function仅将 ARN 作为返回值。

关于amazon-web-services - 如何知道从 aws sam 模板创建 aws 资源时返回哪些属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68581538/

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