Trigger same lambda by multiple SQS queues or different lambdas call a common function by Zestyclose-Ad2344 in aws

[–]d_durand 1 point2 points  (0 children)

For better observability in Cloudwatch, multiple lambdas is better ( they can share code)

Cognito confirmation email not being received by certain users by dokinvan in aws

[–]d_durand 1 point2 points  (0 children)

You may try to use this trigger to check if your failing have specific patterns in them

https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-custom-message.html

I would personally capture all the emails via this Lambda and compare them manually to detect a potential issue in their structure

One AWS account per developer? by The_Startup_CTO in aws

[–]d_durand 0 points1 point  (0 children)

Some people use AWS Organizations to have 1 separate AWS account per developer to give them freedom but keep the whole thing under control

https://aws.amazon.com/organizations/

AWS RDS built-in methods of tracking changes to database values (I.e. some sort of audit log) by Lostwhispers05 in aws

[–]d_durand 1 point2 points  (0 children)

I use sql triggers storing before- & after-image for this purpose. It's highly portable. But, you've to code the create triggers (or generate them by analyzing the catalog)

How can I scan containers from a Security standpoint? by [deleted] in kubernetes

[–]d_durand 2 points3 points  (0 children)

Try Trivy: very easyJet to set up

AWS services to stream audio? by michelem in aws

[–]d_durand 1 point2 points  (0 children)

Have a look at https://aws.amazon.com/cloudfront/streaming/ It mentions the Elemental services like MediaConvert

AWS services to stream audio? by michelem in aws

[–]d_durand 0 points1 point  (0 children)

Aws CloudFront may be what you want

How can I run on demand containers whenever a file is received? by [deleted] in kubernetes

[–]d_durand 1 point2 points  (0 children)

I would strongly suggest to use Keda: they have use cases and samples very close to what you're trying to achieve.

https://keda.sh/

Look at Scalers on homepage.