gpt4 book ai didi

amazon-web-services - 如何基于创建另一个 aws 资源来触发任何 aws 资源?

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

我正在使用cloudformation模板构建dynamo数据库(见下文),一旦堆栈构建成功,我想警报/通知/触发另一个aws资源,例如lambda函数或step函数或aws数据管道开始这样我就可以开始填充发电机了。 Cloudformation 堆栈创建成功后,触发另一个进程或 AWS 资源的最佳方式是什么?

AWSTemplateFormatVersion: 2010-09-09
Description: AWS CloudFormation Template To Create a DynamoDB

Parameters:
HashKeyElementName:
Type: String
Default: Id
Description: Hash Key Name
HashKeyElementType:
Type: String
Default: S
Description: Hash Key Type
Resources:
Table:
Type: AWS::DynamoDB::Table
Properties:
TableName: MyTable
AttributeDefinitions:
-
AttributeName: !Ref HashKeyElementName
AttributeType: !Ref HashKeyElementType
KeySchema:
-
AttributeName: !Ref HashKeyElementName
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
Outputs:
MyTable:
Description: Table Created using this template.
Value: !Ref Table

最佳答案

您可以设置 SNS 主题和 lambda 函数以从堆栈创建中获取事件。 AWS 文档中给出了如何执行此操作的示例:

您必须调整示例和 lambda 以满足您的需求。

关于amazon-web-services - 如何基于创建另一个 aws 资源来触发任何 aws 资源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70931472/

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