How to monitoring Cloudformation events in Amazon EventBridge / Amazon CloudWatch?
My approach is to trigger a lambda event based as soon as a specific Cloudformation stack is created successfully.
Therefor i like to declare an event rule - but the source and event details are not clear to me?
CreatePipelineRule:
Type: AWS::Events::Rule
Properties:
Description: "EventRule"
EventPattern:
source:
- aws.???
detail-type:
- 'Cloudformation stack created event'
detail:
event:
- ???
State: ENABLED
Unfortunately i can not find a documentation related to this events. In General the event pattern is described https://docs.aws.amazon.com/eventbridge/latest/userguide/filtering-examples-structure.html
For some sources like code commit the generated events are well documented. For example code commit: https://docs.aws.amazon.com/codecommit/latest/userguide/monitoring-events.html.
Is there also a list of events generated by Cloudformation?