AWS Basics Flashcards
1
Q
What is Amazon EventBridge?
A
Used to ingest and filter events and then forward them only to the right consumers (event bus)
2
Q
What are some features of Lambda?
A
- It is stateless
- It initiates functions in response to events (even-driven architecture)
- It provides built-in monitoring and logging
- It scales automatically
3
Q
When should you invoke a Lambda function asynchronously?
A
When the client doesn’t need an immediate response. Can be invoked async with SNS, S3 and EventBridge. Has built-in retries (retries twice)
Other invocations options are synchronous and polling.
Polling is done with Kinesis, SQS, and DynamoDB streams (but perform synchronous invocations)
Synchronous invocation is done with API Gateway, Cognito, CloudFormation, Alexa, Lex, and CloudFront
4
Q
A