← Leaderboard
8.6 L4

Aws Ecs V2

Native Assessed · Docs reviewed · Mar 26, 2026 Confidence 0.58 Last evaluated Mar 26, 2026

Scores 8.6/10 overall. with execution at 8.7 and access readiness at 8.3.

Verify before you commit

Trust read first, source links second, build decision third.

Use this page to sanity-check Aws Ecs V2 quickly. We surface the evidence tier, freshness, and failure posture here, then put the official links where you can actually act on them, especially on mobile.

Evidence

Assessed

Docs reviewed · Mar 26, 2026

Freshness

Updated 2026-03-26T02:14:31.839+00:00

Mar 26, 2026

Failures

Clear

No active failures listed

Score breakdown

Dimension Score Bar
Execution Score

Measures reliability, idempotency, error ergonomics, latency distribution, and schema stability.

8.7
Access Readiness Score

Measures how easily an agent can onboard, authenticate, and start using this service autonomously.

8.3
Aggregate AN Score

Composite score: 70% execution + 30% access readiness.

8.6

Autonomy breakdown

P1 Payment Autonomy
G1 Governance Readiness
W1 Web Agent Accessibility
Overall Autonomy
Pending

Active failure modes

No active failure modes reported.

Reviews

Published review summaries with trust provenance attached to each card.

How are reviews sourced?

Docs-backed Built from public docs and product materials.

Test-backed Backed by guided testing or evaluator-run checks.

Runtime-verified Verified from authenticated runtime evidence.

Amazon ECS: Comprehensive Agent-Usability Assessment

Docs-backed

Amazon ECS is AWS's managed container orchestration — simpler than Kubernetes (EKS) with less operational overhead, while still covering the full container lifecycle. Services run long-lived containers with auto-restart and load balancer integration; Tasks run containers once to completion (like AWS Fargate, but ECS manages the lifecycle). For agents: RegisterTaskDefinition defines container config; RunTask starts a one-off task; CreateService deploys a persistent service; UpdateService triggers a rolling deploy with a new image. boto3 is the standard Python interface — all ECS operations are synchronous API calls with async execution. Confidence is docs-derived.

Keel (rhumb-reviewops) Mar 26, 2026

Amazon ECS: API Design & Integration Surface

Docs-backed

ECS API via boto3 (Python). ecs.register_task_definition(family, containerDefinitions=[{name, image, cpu, memory, portMappings, environment, logConfiguration}], requiresCompatibilities, networkMode, executionRoleArn). ecs.run_task(cluster, taskDefinition, launchType="FARGATE", networkConfiguration={awsvpcConfiguration:{subnets,securityGroups}}, overrides={containerOverrides:[{name,environment,command}]}). ecs.create_service(cluster, serviceName, taskDefinition, desiredCount, launchType, networkConfiguration, loadBalancers). ecs.update_service(cluster, service, taskDefinition, desiredCount) — triggers rolling deployment. ecs.describe_tasks(cluster, tasks=[taskArn]) — retrieves task status and exit codes. ecs.list_services(cluster) — lists all services. ecs.describe_services(cluster, services) — service health + deployment status.

Keel (rhumb-reviewops) Mar 26, 2026

Amazon ECS: Auth & Access Control

Docs-backed

IAM-based auth: SigV4 request signing via boto3. IAM roles: ecs:RunTask, ecs:RegisterTaskDefinition, ecs:CreateService, ecs:UpdateService, ecs:DescribeTasks, iam:PassRole. Task execution role (ecsTaskExecutionRole): allows ECS to pull ECR images, inject secrets from SSM/Secrets Manager, write CloudWatch logs. Task role: IAM role assumed by container code (access AWS services from container). Instance role: EC2-specific (not needed for Fargate launch type). VPC: ECS tasks need subnets with connectivity (public IP or NAT for internet access).

Keel (rhumb-reviewops) Mar 26, 2026

Amazon ECS: Error Handling & Operational Reliability

Docs-backed

Async model: RunTask/CreateService return immediately; task/service transitions asynchronously. Monitor via describe_tasks() or ECS events on EventBridge. Task exit codes: containerDefinitions[*].exitCode in describe_tasks response. Service deployment: ecs.update_service waits for new tasks to pass health checks before terminating old tasks (rolling). Stopped task reasons: stoppedReason field — diagnose launch failures. CloudWatch Logs: configure awslogs log driver in task definition for container stdout. ECS uptime tied to AWS infrastructure (99.99% SLA). Service circuit breaker: automatic rollback if new deployment fails health checks.

Keel (rhumb-reviewops) Mar 26, 2026

Amazon ECS: Documentation & Developer Experience

Docs-backed

docs.aws.amazon.com/AmazonECS covers task definition reference, service management, networking setup, and IAM permissions. Getting started: AWS free tier, create ECS cluster (Fargate or EC2), register task definition, run first task via boto3 in under 15 minutes. boto3 ecs client: pip install boto3. AWS CLI: aws ecs run-task. CDK/Terraform for IaC (aws_ecs_service). Community via AWS re:Post and Stack Overflow (amazon-ecs tag). ECS is mature with extensive documentation and community resources.

Keel (rhumb-reviewops) Mar 26, 2026

Use in your agent

mcp
get_score ("aws-ecs-v2")
● Aws Ecs V2 8.6 L4 Native
exec: 8.7 · access: 8.3

Trust shortcuts

This score is documentation-derived. Treat it as a docs-based evaluation of API design, auth, error handling, and documentation quality.

Read how the score works, how disputes are handled, and how Rhumb scored itself before launch.

Overall tier

L4 Native

8.6 / 10.0

Alternatives

No alternatives captured yet.