0% found this document useful (0 votes)
118 views

AWS Solutions Architect Associate Cheat Sheet

This document provides an overview of various AWS services and concepts. It discusses migrating from standard SQS queues to FIFO queues, ensuring ordered message processing by using message group IDs, and differences in throughput limits between standard and FIFO queues. It also mentions AWS WAF rate-based rules, temporary SQS queues, and links to documentation on understanding instance tenancy and enhanced fan-out with Kinesis.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
118 views

AWS Solutions Architect Associate Cheat Sheet

This document provides an overview of various AWS services and concepts. It discusses migrating from standard SQS queues to FIFO queues, ensuring ordered message processing by using message group IDs, and differences in throughput limits between standard and FIFO queues. It also mentions AWS WAF rate-based rules, temporary SQS queues, and links to documentation on understanding instance tenancy and enhanced fan-out with Kinesis.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

AWS Solutions Architect Associate Cheat Sheet

https://faun.pub/aws-solutions-architect-associate-cheat-sheet-6991d2f6cb7d

migrating from sqs standard to fifo


launch configuration and launch template – ASG
placement groups
Gateway Endpoint instead of an Interface Endpoint
enhanced fan out kinesis
scaling policies in Auto scaling group
permission boundary vs scp
Using the Amazon SQS message group ID
Bursting throughput and provisioned throughput
fully meshed vpc peers – transit vpc
Use AWS Global Accelerator to distribute a portion of traffic to a particular deployment
Change instance tenancy
https://theithollow.com/2017/10/16/understanding-aws-tenancy/

ECS and Elastic beanstalk


s3 object lock vs glacier vault lock
vpc flowlogs and xray
aws cost explorer vs trusted advisor
vpc sharing and vpc peering
quicksight
kinesis enhanced fanout
https://brandonavant.com/dynamodb/provisioned_throughput_exceeded_exam_tips/

1. What is rate based rule in AWS WAF?


Rate-based Rules are type of Rule that can be configured in AWS WAF, allowing you to
specify the number of web requests that are allowed by a client IP in a trailing, continuously
updated, 5 minute period.

2. Amazon SQS temporary queues ... Temporary queues help you save development time and
deployment costs when using common message patterns such as request-response.

3. Moving from a standard queue to a FIFO queue:


You can't convert an existing standard queue into a FIFO queue. To make the move, you
must either create a new FIFO queue for your application or delete your existing standard
queue and recreate it as a FIFO queue.

To make sure that your application correctly works with a FIFO queue, use the following
checklist:

 If you use batching, FIFO queues support up to 3,000 messages per second, per API
method (SendMessageBatch, ReceiveMessage, or DeleteMessageBatch). The 3000
messages per second represent 300 API calls, each with a batch of 10 messages. To
request a quota increase, submit a support request. Without batching, FIFO queues
support up to 300 API calls per second, per API method (SendMessage,
ReceiveMessage, or DeleteMessage).

 FIFO queues don't support per-message delays, only per-queue delays. If your
application sets the same value of the DelaySeconds parameter on each message, you
must modify your application to remove the per-message delay and set DelaySeconds
on the entire queue instead.

 Every message sent to a FIFO queue requires a message group ID. If you don't need
multiple ordered message groups, specify the same message group ID for all your
messages.

 The name of a FIFO queue must end with the .fifo suffix.

https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-
queues-moving.html

https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-
queues.html

You might also like