在 Amazon Lambda 中使用 ASP.NET 核心框架 运行 的 AWS 无服务器应用程序
An AWS Serverless Application that uses the ASP.NET Core framework running in Amazon Lambda
我是 AWS 的新手。
将我的代码发布到 Aws Serverless Lambda API。处理 100% 后给出
的错误
Found existing stack: True
The stack's current state of UPDATE_ROLLBACK_FAILED is invalid for updating
Failed to publish AWS Serverless application
并且在服务器上检查时显示
Description : An AWS Serverless Application that uses the ASP.NET Core framework running in Amazon Lambda.
Status Reason: The following resource(s) failed to update: [AspNetCoreFunctionRole].
Status : UPDATE_ROLLBACK_FAILED
不知道查什么,查哪里。我认为 dot net 版本有一些错误,这些是我系统中安装的 dot net 相关应用程序。
错误是“Amazon Lambda 中的 ASP.NET 核心框架 运行”
- 我们必须在发布前删除此政策。
- 我们通过添加两个策略 AWSLambdaBasicExecutionRole 和 AWSLambda_FullAccess 为我们的存储桶创建了一个角色。
它现在工作正常。
我是 AWS 的新手。 将我的代码发布到 Aws Serverless Lambda API。处理 100% 后给出
的错误Found existing stack: True
The stack's current state of UPDATE_ROLLBACK_FAILED is invalid for updating
Failed to publish AWS Serverless application
并且在服务器上检查时显示
Description : An AWS Serverless Application that uses the ASP.NET Core framework running in Amazon Lambda.
Status Reason: The following resource(s) failed to update: [AspNetCoreFunctionRole].
Status : UPDATE_ROLLBACK_FAILED
不知道查什么,查哪里。我认为 dot net 版本有一些错误,这些是我系统中安装的 dot net 相关应用程序。
错误是“Amazon Lambda 中的 ASP.NET 核心框架 运行”
- 我们必须在发布前删除此政策。
- 我们通过添加两个策略 AWSLambdaBasicExecutionRole 和 AWSLambda_FullAccess 为我们的存储桶创建了一个角色。
它现在工作正常。