Parse ARNs using Python
Project description
arnparse
Parse ARNs using Python
Motivation
Sometimes, you want to parse an Amazon Resource Name (ARN) into its components to get some useful information from the ARN (e.g. AWS region, account ID, etc).
You can find documentation on ARNs and their components here: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
Installation
pip install arnparse
Examples
S3 Object
from arnparse import arnparse
arn = arnparse('arn:aws:s3:::my_corporate_bucket/exampleobject.png')
assert arn.partition == 'aws'
assert arn.service == 's3'
assert arn.region is None
assert arn.account_id is None
assert arn.resource_type is None
assert arn.resource == 'my_corporate_bucket/exampleobject.png'
VPC
from arnparse import arnparse
arn = arnparse('arn:aws:ec2:us-east-1:123456789012:vpc/vpc-fd580e98')
assert arn.partition == 'aws'
assert arn.service == 'ec2'
assert arn.region == 'us-east-1'
assert arn.account_id == '123456789012'
assert arn.resource_type == 'vpc'
assert arn.resource == 'vpc-fd580e98'
CloudWatch Alarm
from arnparse import arnparse
arn = arnparse('arn:aws:cloudwatch:us-east-1:123456789012:alarm:MyAlarmName')
assert arn.partition == 'aws'
assert arn.service == 'cloudwatch'
assert arn.region == 'us-east-1'
assert arn.account_id == '123456789012'
assert arn.resource_type == 'alarm'
assert arn.resource == 'MyAlarmName'
SNS Topic
from arnparse import arnparse
arn = arnparse('arn:aws:sns:*:123456789012:my_corporate_topic')
assert arn.partition == 'aws'
assert arn.service == 'sns'
assert arn.region == '*'
assert arn.account_id == '123456789012'
assert arn.resource_type is None
assert arn.resource == 'my_corporate_topic'
API Gateway
from arnparse import arnparse
arn = arnparse('arn:aws:apigateway:us-east-1::a123456789012bc3de45678901f23a45:/test/mydemoresource/*')
assert arn.partition == 'aws'
assert arn.service == 'apigateway'
assert arn.region == 'us-east-1'
assert arn.account_id is None
assert arn.resource_type is None
assert arn.resource == 'a123456789012bc3de45678901f23a45:/test/mydemoresource/*'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
arnparse-0.0.2.tar.gz
(2.7 kB
view details)
Built Distribution
File details
Details for the file arnparse-0.0.2.tar.gz
.
File metadata
- Download URL: arnparse-0.0.2.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.23.3 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb87f17200d07121108a9085d4a09cc69a55582647776b9a917b0b1f279db8f8 |
|
MD5 | f0b30cd75b0b00bc98a9ab304668198b |
|
BLAKE2b-256 | bd42949284e998282b167e273872fa9c39b06d41a6055163c30aa2daaeee76a0 |
File details
Details for the file arnparse-0.0.2-py2.py3-none-any.whl
.
File metadata
- Download URL: arnparse-0.0.2-py2.py3-none-any.whl
- Upload date:
- Size: 2.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.23.3 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0906734e4b8f19e39b1e32944c6cd6274b6da90c066a83882ac7a11d27553e0 |
|
MD5 | cecc87ae3e1dbefe29a58616e979c0e9 |
|
BLAKE2b-256 | 576f630bedeb32964e99661990811a66389201b62c047b35c17e332dad9be2a3 |