内容简介:A utility service for Amazon Resource Names (ARN Services has two features: you canbreak up an ARN into its componentsand you cangenerate an ARN from its components. There are at the moment no semantic checks done, however for theIn order to break up an AR
arn.services
A utility service for Amazon Resource Names ( ARNs
), providing the functionality
as listed below. You can consume it as an online service via https://arn.services
or run it yourself as a SAM application
, see details below in thesection.
Use it
ARN Services has two features: you canbreak up an ARN into its componentsand you cangenerate an ARN from its components. There are at the moment no
semantic checks done, however for the generate/
endpoint some defaulting is provided.
Compartmentalize
In order to break up an ARN into its components (or: compartmentalize), use an
HTTP GET
on explode/$ARN
, for example:
$ curl -s https://arn.services/explode/arn:aws:s3:us-west-2::abucket | jq .
{
"Partition": "aws",
"Service": "s3",
"Region": "us-west-2",
"AccountID": "",
"Resource": "abucket"
}
Generate
To generate a fully qualified ARN from (certain) components, use an HTTP POST
to generate/
, for example:
$ curl -s -X POST \
-H "Content-Type: application/json" \
-d '{"Service":"s3", "Resource":"somebucket/someobject"}' \
https://arn.services/generate
arn:aws:s3:us-west-2::somebucket/someobject
Run it yourself
If you want to run ARN services yourself, you need to:
-
clone this repo (using
git clone https://github.com/mhausenblas/arn.services.gitfor example) -
create an S3 bucket for the Lambda functions and change the value of
ARNS_BUCKETto your own S3 bucket in the Makefile -
execute
make deploy -
OPTIONALLY: set up API Gateway
and Route 53 for a custom domain and run
make up ARNS_ACM_CERT=$ARNS_ACM_CERTwith the ARN of the ACM cert (I did email validate for my Namecheap domain).
以上所述就是小编给大家介绍的《AWS ARN services》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Spark大数据分析技术与实战
董轶群、曹正凤、赵仁乾、王安 / 电子工业出版社 / 2017-7 / 59.00
Spark作为下一代大数据处理引擎,经过短短几年的飞跃式发展,正在以燎原之势席卷业界,现已成为大数据产业中的一股中坚力量。 《Spark大数据分析技术与实战》着重讲解了Spark内核、Spark GraphX、Spark SQL、Spark Streaming和Spark MLlib的核心概念与理论框架,并提供了相应的示例与解析。 《Spark大数据分析技术与实战》共分为8章,其中前4......一起来看看 《Spark大数据分析技术与实战》 这本书的介绍吧!