I am creating CloudFormation stack and Lambda that I want to be invoked once stack creation has been completed (stack gained CREATE_COMPLETED status). Lambda is not stack resource, but this can be changed to achieve result if needed.
Is it possible to catch this event for stack using CloudWatchRule?
Currently I am able to catch stack resources creation events, but not stack creation itself.
Similar questions include approaches of subscribing CloudFormationTemplate to SNS topic, however this triggers SNS on each stack resource status change, but not stack itself.
Given this, Lambda will be invoked on each resource change, which doesnt tell anything about whole template status.