S3 Path Parser & Converter
Instantly parse S3 URIs (s3://...). Extract bucket names and keys, and automatically generate direct links to the management console.
You can enter any format: S3 URI, ARN, HTTP URL, path-style URL, or console URL
Asia Pacific (Tokyo) (ap-northeast-1)
Optional: Enter to generate CloudFront URL format
How to use
About this tool
Converts between S3 URI, ARN, HTTP URL, path-style, CloudFront URL, console URL, and related formats.
How to use
Enter an S3 path in any supported format; view the equivalent in other formats.
Use cases
• Building paths for CLI/SDK • CloudFront origin config • ARN for IAM • Docs and tickets
Code Examples
AWS SDK for JavaScript
Read Only
1s3.getObject({ Bucket: 'my-bucket', Key: 'path/to/object.json' });boto3
Read Only
1s3.get_object(Bucket='my-bucket', Key='path/to/object.json')AWS SDK for PHP
Read Only
1$s3->getObject(['Bucket' => 'my-bucket', 'Key' => 'path/to/object.json']);