Amazon Resource Name (ARN)
In AWS, an ARN (Amazon Resource Name) is a unique identifier assigned to each AWS resource in a particular region. ARNs are used to uniquely identify resources across AWS services and are used extensively in IAM policies, Amazon CloudWatch alarms, Amazon S3 bucket policies, and many other AWS services.
An ARN typically follows this format:
arn:partition:service:region:account-id:resource-idFor example, the ARN for an S3 bucket in the US East (N. Virginia) region might look like this:
arn:aws:s3:::example-bucketAnd the ARN for an IAM user might look like this:
arn:aws:iam::123456789012:user/john.doeARNs provide a standardized way to reference AWS resources across different AWS services and APIs.
Last updated