A parks department streams fire-hydrant pressure readings into AWS and must keep the ingestion path off the public internet. The architecture should use a private streaming or API endpoint secured with IAM—not an out-of-scope IoT specialty service. Which design best meets that requirement?
Select an answer to reveal the explanation.
Short Explanation
Picture the hydrant feed like a private city radio channel, not a bullhorn on Main Street. You want readings to land on a locked private pipe—Kinesis or a private API—with IAM checking badges, not IoT Core (out of scope) and not a wide-open public PUT bucket.
Full Explanation
SAA-C03 Task 1.2 emphasizes securing workload ingress with IAM and private networking. Hydrant-style telemetry can use in-scope services such as Kinesis or API Gateway with VPC endpoints or private integrations rather than public anonymous endpoints. AWS IoT services are out of scope for this exam and must not be required as the correct answer. Private ingestion plus least-privilege IAM reduces exposure compared with public S3 website PUTs or unauthenticated APIs.