🇮🇳 AWS Certified Solutions Architect – Associate · subject
AWS Certified Solutions Architect – Associate Application Integration, Analytics & Operational Excellence Syllabus
Every chapter and topic of Application Integration, Analytics & Operational Excellence examined in AWS Certified Solutions Architect – Associate — 4 chapters, 17 topics and 11 sub-topics, plus 51 flashcards written against it.
Application Integration, Analytics & Operational Excellence syllabus — full chapter and topic list
Expand any chapter to see its topics and sub-topics. This is the whole examinable outline for Application Integration, Analytics & Operational Excellence in AWS Certified Solutions Architect – Associate, not a summary of it.
-
Decoupling & Messaging
5 topics- Amazon SQS
- Standard vs FIFO queues
- Visibility timeout, dead-letter queues and long polling
- Amazon SNS pub/sub and fan-out patterns
- Amazon EventBridge and event-driven architectures
- AWS Step Functions for workflow orchestration
- Amazon MQ and Amazon AppFlow overview
- Amazon SQS
-
Streaming & Analytics
4 topics- Amazon Kinesis
- Data Streams, Data Firehose and Managed Service for Apache Flink
- Amazon Athena and AWS Glue
- Amazon Redshift data warehousing
- Redshift Spectrum and concurrency scaling
- Amazon EMR, QuickSight and OpenSearch Service
- Amazon Kinesis
-
Monitoring & Observability
4 topics- Amazon CloudWatch
- Metrics, alarms and composite alarms
- Logs, Logs Insights and the CloudWatch agent
- Dashboards and EventBridge scheduling
- AWS CloudTrail and AWS X-Ray tracing
- AWS Systems Manager
- Session Manager, Patch Manager and Run Command
- AWS Health Dashboard and Trusted Advisor checks
- Amazon CloudWatch
-
Resilience & Disaster Recovery
4 topics- RTO and RPO concepts
- Disaster recovery strategies
- Backup and restore
- Pilot light and warm standby
- Multi-site active-active
- Designing highly available and fault-tolerant architectures
- AWS Well-Architected Framework pillars and cost optimization
Application Integration, Analytics & Operational Excellence flashcards for AWS Certified Solutions Architect – Associate
21 of 51 cards from the Application Integration, Analytics & Operational Excellence deck — real questions with worked answers.
What are the two types of Amazon SQS queues, and what does each guarantee?
Standard queues offer nearly unlimited throughput, at-least-once delivery, and best-effort ordering. FIFO queues guarantee exactly-once processing and strict first-in-first-out ordering, with up to 300 messages/sec (3,000 with batching).
What is the default and maximum visibility timeout for an Amazon SQS message?
The default visibility timeout is 30 seconds, and the maximum is 12 hours. During this period, a consumed message is hidden from other consumers.
In Amazon SQS, what is the difference between short polling and long polling?
Short polling returns immediately, sampling only a subset of servers (may return empty even if messages exist). Long polling (WaitTimeSeconds up to 20s) waits for messages to arrive, reducing empty responses and cost.
What is the maximum message retention period for an Amazon SQS queue?
Messages can be retained from 60 seconds up to 14 days; the default retention is 4 days.
What is an SQS Dead-Letter Queue (DLQ) used for?
A DLQ stores messages that fail processing after exceeding the maxReceiveCount (redrive policy). It isolates problematic messages for debugging and prevents them from blocking the main queue.
What is the maximum size of a single Amazon SQS message, and how do you send larger payloads?
The max message size is 256 KB. For larger payloads, use the SQS Extended Client Library to store the body in Amazon S3 and pass a reference in the message.
What is the Amazon SNS fan-out pattern?
A single message published to an SNS topic is delivered (fanned out) to multiple subscribers simultaneously — commonly multiple SQS queues, Lambda functions, or HTTP endpoints — enabling parallel, decoupled processing.
Which delivery protocols/endpoints can subscribe to an Amazon SNS topic?
SQS, AWS Lambda, HTTP/HTTPS, email, email-JSON, SMS, mobile push (application), and Kinesis Data Firehose.
What is the difference between SNS Standard and FIFO topics?
Standard topics give high throughput with best-effort ordering and at-least-once delivery. FIFO topics guarantee strict ordering and deduplication but can only deliver to SQS FIFO queues and have lower throughput.
How does Amazon SNS message filtering work?
Subscribers apply a filter policy (JSON) against message attributes or message body. Only messages matching the policy are delivered to that subscription, avoiding the need for separate topics.
What is Amazon EventBridge, and how does it relate to CloudWatch Events?
EventBridge is a serverless event bus for routing events from AWS services, SaaS apps, and custom apps to targets using rules. It is the evolution of CloudWatch Events, adding the schema registry and third-party SaaS partner event sources.
What is the EventBridge Schema Registry?
It stores event structure (schemas), can auto-discover schemas from events on a bus, and generates code bindings so developers can work with strongly typed event objects.
How do EventBridge rules route events, and what is a target?
Rules match incoming events against an event pattern (or run on a schedule). Matching events are sent to one or more targets (up to 5 per rule), such as Lambda, SQS, SNS, Step Functions, or Kinesis.
What is the main benefit of an event-driven architecture on AWS?
Loose coupling: producers and consumers are decoupled, enabling independent scaling, asynchronous processing, resilience to failures, and easier addition of new consumers without changing producers.
What are the two workflow types in AWS Step Functions and when is each used?
Standard workflows: long-running (up to 1 year), exactly-once, full execution history — for orchestration/auditable workflows. Express workflows: high-volume, short-duration (up to 5 min), at-least-once — for streaming/event processing.
In AWS Step Functions, what language defines a state machine, and what are common state types?
Amazon States Language (ASL), a JSON-based language. Common states: Task, Choice, Parallel, Map, Wait, Pass, Succeed, and Fail.
What does the Map state do in AWS Step Functions?
It iterates over a collection of items and runs a set of steps for each item, supporting parallel processing (with concurrency control) — useful for fan-out over arrays of data.
What is Amazon MQ, and when should you choose it over SQS/SNS?
Amazon MQ is a managed message broker for Apache ActiveMQ and RabbitMQ. Choose it when migrating existing applications that use standard protocols (JMS, AMQP, MQTT, STOMP, OpenWire) rather than rewriting to SQS/SNS APIs.
What is Amazon AppFlow used for?
AppFlow is a fully managed integration service for securely transferring data between SaaS apps (Salesforce, ServiceNow, Slack, etc.) and AWS services (S3, Redshift) without writing custom code, with built-in data transformation.
What are the four core services in the Amazon Kinesis family?
Kinesis Data Streams (real-time ingestion), Kinesis Data Firehose (load to destinations like S3/Redshift), Kinesis Data Analytics (SQL/Flink on streams), and Kinesis Video Streams (video ingestion).
In Kinesis Data Streams, what is a shard and what is its throughput limit?
A shard is a unit of capacity. Each shard ingests up to 1 MB/sec or 1,000 records/sec, and outputs up to 2 MB/sec. Throughput scales by adding shards.
See more Application Integration, Analytics & Operational Excellence flashcards →
Planning Application Integration, Analytics & Operational Excellence for AWS Certified Solutions Architect – Associate
Application Integration, Analytics & Operational Excellence is about 18% of the AWS Certified Solutions Architect – Associate syllabus by topic count — 17 of 94 topics, spread over 4 chapters. At roughly 45 minutes per topic plus 12 minutes per sub-topic, a first pass runs to about 15 hours.
The heaviest chapters are Decoupling & Messaging (5 topics), Streaming & Analytics (4 topics), Monitoring & Observability (4 topics) . Front-load those while your energy is high; the short chapters are better revision filler later.
Work top-down: read the chapter, then tick topics off individually rather than marking the whole chapter done. Sub-topics are where silent gaps hide.
Application Integration, Analytics & Operational Excellence (AWS Certified Solutions Architect – Associate) FAQ
What is in the AWS Certified Solutions Architect – Associate Application Integration, Analytics & Operational Excellence syllabus?
Application Integration, Analytics & Operational Excellence is split into 4 chapters — Decoupling & Messaging, Streaming & Analytics, Monitoring & Observability and Resilience & Disaster Recovery, containing 17 topics and 11 sub-topics in total.
How is Application Integration, Analytics & Operational Excellence structured in the AWS Certified Solutions Architect – Associate syllabus?
4 chapters. Application Integration, Analytics & Operational Excellence accounts for about 18% of the topics in the whole AWS Certified Solutions Architect – Associate syllabus (17 of 94).
How long should I spend on Application Integration, Analytics & Operational Excellence for AWS Certified Solutions Architect – Associate?
Budget around 15 hours for a first pass through Application Integration, Analytics & Operational Excellence — about 45 minutes per topic plus 12 minutes per sub-topic across its 17 topics. Add revision cycles on top.
Are there flashcards for AWS Certified Solutions Architect – Associate Application Integration, Analytics & Operational Excellence?
Yes — a 51-card Application Integration, Analytics & Operational Excellence deck. Sample cards are printed on this page, and the full deck is free in the Examius app with spaced repetition scheduling.