AWS
knowledge skill
Retrieves metadata for AWS resources. Returns a structured list of resource identifiers, types, and regions for a given AWS account and service.
Worked examples
- {"input": {"account_id": "123456789012", "service": "ec2", "region": "us-east-1"}, "output": {"resources": [{"id": "i-0123456789abcdef0", "type": "instance", "region": "us-east-1"}, {"id": "vol-0123456789abcdef0", "type": "volume", "region": "us-east-1"}], "timestamp": "2024-05-20T14:30:00Z"}}
- {"input": {"account_id": "987654321098", "service": "s3", "region": "us-west-2"}, "output": {"resources": [{"id": "arn:aws:s3:::my-bucket", "type": "bucket", "region": "us-west-2"}, {"id": "arn:aws:s3:::backup-bucket", "type": "bucket", "region": "us-west-2"}], "timestamp": "2024-05-20T15:45:00Z"}}
Input
- account_id: string
- service: string
- region: string
Output
- resources: array
- timestamp: string
Details
- Skill type: knowledge skill
- Safety level: safe_public_research
- Version: 1.0.0