如何通过AWS API确定Redshift集群的ARN?

时间:2017-10-06 19:21:41

标签: amazon-web-services amazon-redshift aws-sdk

我尝试使用CreateTags http://docs.aws.amazon.com/redshift/latest/APIReference/API_CreateTags.html向Redshift群集添加标记,并且您会注意到它需要资源的ARN。

但是当您调用DescribeClusters时,http://docs.aws.amazon.com/redshift/latest/APIReference/API_DescribeClusters.html不会返回任何ARN。

是否有其他API调用来检索ARN,还是我必须手动构建它?

1 个答案:

答案 0 :(得分:0)

ARN格式记录在案here。特别是对于Redshift集群,ARN格式为:

arn:aws:redshift:region:account-id:cluster:cluster-name

如果您知道region,account-id和cluster-name,那么您可以构建ARN。