AWS ARN Samples

Collection of Amazon Resource Names (ARNs) for various AWS services and resources

Key Facts

Category
Validation
Items
1
Format Families
text

Sample Overview

Collection of Amazon Resource Names (ARNs) for various AWS services and resources This sample set belongs to Validation and can be used to test related workflows inside Elysia Tools.

📝 Common AWS ARN Formats

🟢 simple

A collection of ARNs for commonly used AWS services

# AWS ARN Samples
# Copy one of these lines to test the AWS ARN Validator

# --- S3 (Simple Storage Service) ---
# S3 bucket (no region or account)
arn:aws:s3:::my-bucket-name
arn:aws:s3:::example-production-bucket

# S3 object access
arn:aws:s3:::my-bucket/path/to/file.txt

# --- EC2 (Elastic Compute Cloud) ---
# EC2 instance
arn:aws:ec2:us-east-1:123456789012:instance/i-1234567890abcdef0
arn:aws:ec2:eu-west-1:987654321098:instance/i-0123456789abcdef0

# EC2 security group
arn:aws:ec2:us-east-1:123456789012:security-group/sg-903004f168f400e77

# EC2 volume
arn:aws:ec2:us-west-2:123456789012:volume/vol-0123456789abcdef0

# --- Lambda ---
# Lambda function
arn:aws:lambda:us-east-1:123456789012:function:my-function
arn:aws:lambda:eu-central-1:987654321098:function:process-orders

# Lambda layer
arn:aws:lambda:us-east-1:123456789012:layer:my-layer:1

# --- IAM (Identity and Access Management) ---
# IAM user
arn:aws:iam::123456789012:user/john.doe
arn:aws:iam::987654321098:user/alice

# IAM role
arn:aws:iam::123456789012:role/MyRole
arn:aws:iam::123456789012:role/lambda-execution-role

# IAM policy
arn:aws:iam::123456789012:policy/MyPolicy
arn:aws:iam::123456789012:policy/service-role/AWSLambdaBasicExecutionRole

# --- RDS (Relational Database Service) ---
# RDS database instance
arn:aws:rds:us-east-1:123456789012:db:mysql-production-db
arn:aws:rds:eu-west-1:987654321098:db:postgres-main

# RDS cluster
arn:aws:rds:us-east-1:123456789012:cluster:my-cluster

# RDS snapshot
arn:aws:rds:us-east-1:123456789012:snapshot:my-snapshot-2024

# --- SNS (Simple Notification Service) ---
# SNS topic
arn:aws:sns:us-east-1:123456789012:MyTopic
arn:aws:sns:eu-west-1:987654321098:notifications-topic

# --- SQS (Simple Queue Service) ---
# SQS queue
arn:aws:sqs:us-east-1:123456789012:MyQueue
arn:aws:sqs:eu-central-1:987654321098:order-processing-queue

# --- DynamoDB ---
# DynamoDB table
arn:aws:dynamodb:us-east-1:123456789012:table/Users
arn:aws:dynamodb:eu-west-1:987654321098:table/Products

# DynamoDB stream
arn:aws:dynamodb:us-east-1:123456789012:table/Users/stream/2015-11-30T18:00:00.000