Water-meter gateways emit continuous reading events that a billing enrichment job must process as a stream, not as overnight CSV drops only. Which AWS approach fits application-level streaming ingest?
Select an answer to reveal the explanation.
Short Explanation
Meters do not wait for the overnight CSV truck — readings keep flowing all day. Put that firehose of events into Kinesis and let enrichment consumers work the stream. Batch-only drops miss the continuous nature of the data.
Full Explanation
Streaming ingest and processing are in scope for DVA-C02 via Amazon Kinesis. Continuous meter events should be written to a stream and consumed by application code (Lambda, KCL workers, and similar) rather than delayed solely to nightly files. Email and Run Command are not streaming architectures. Nightly S3 CSV can complement analytics but does not satisfy continuous enrichment requirements alone.