Understanding Amazon DocumentDB Amazon Resource Names (ARNs)
Resources that you create in AWS are each uniquely identified with an Amazon Resource Name (ARN). For certain Amazon DocumentDB (with MongoDB compatibility) operations, you must uniquely identify an Amazon DocumentDB resource by specifying its ARN. For example, when you add a tag to a resource, you must provide the resource’s ARN.
Constructing an ARN for an Amazon DocumentDB Resource
You can construct an ARN for an Amazon DocumentDB resource using the following syntax. Amazon DocumentDB shares the format of Amazon Relational Database Service (Amazon RDS) ARNS. Amazon DocumentDB ARNs contain rds
and not docdb
.
arn:aws:rds:`region`:`account_number`:`resource_type`:`resource_id`
Region Name | Region | Availability Zones (compute) |
---|---|---|
US East (Ohio) |
| 3 |
US East (N. Virginia) |
| 6 |
US West (Oregon) |
| 4 |
South America (São Paulo) |
| 3 |
Asia Pacific (Mumbai) |
| 3 |
Asia Pacific (Seoul) |
| 4 |
Asia Pacific (Singapore) |
| 3 |
Asia Pacific (Sydney) |
| 3 |
Asia Pacific (Tokyo) |
| 3 |
Canada (Central) |
| 3 |
Europe (Frankfurt) |
| 3 |
Europe (Ireland) |
| 3 |
Europe (London) |
| 3 |
Europe (Paris) |
| 3 |
AWS GovCloud (US) |
| 3 |
Note
The Amazon DocumentDB architecture separates storage and compute. For the storage layer, Amazon DocumentDB replicates six copies of your data across three AWS Availability Zones (AZs). The AZs listed in the table above are the number of AZs that you can use in a given region to provision compute instances. As an example, if you are launching an Amazon DocumentDB cluster in ap-northeast-1, your storage will be replicated six ways across three AZs but your compute instances will only be available in two AZs.
The following table shows the format that you should use when constructing an ARN for a particular Amazon DocumentDB resource. Amazon DocumentDB shares the format of Amazon RDS ARNS. Amazon DocumentDB ARNs contain rds
and not docdb
.
Resource Type | ARN Format / Example |
---|---|
Instance ( |
|
Cluster ( |
|
Cluster parameter group ( |
|
Security group ( |
|
Cluster snapshot ( |
|
Subnet group ( |
|
Finding an Amazon DocumentDB Resource ARN
You can find the ARN of an Amazon DocumentDB resource using the AWS Management Console or the AWS CLI.
Using the AWS Management Console
To find an ARN using the console, navigate to the resource that you want an ARN for, and view the details for that resource.
For example, you can get the ARN for a cluster in the Details pane for the cluster, as shown in the following screenshot.
Using the AWS CLI
To get an ARN using the AWS CLI for a particular Amazon DocumentDB resource, use the describe
operation for that resource. The following table shows each AWS CLI operation and the ARN property that is used with the operation to get an ARN.
AWS CLI Command | ARN Property |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example - Finding the ARN for a cluster
The following AWS CLI operation finds the ARN for the cluster sample-cluster
.
For Linux, macOS, or Unix:
aws docdb describe-db-clusters \
--db-cluster-identifier sample-cluster \
--query 'DBClusters[*].DBClusterArn'
For Windows:
aws docdb describe-db-clusters ^
--db-cluster-identifier sample-cluster \
--query 'DBClusters[*].DBClusterArn'
Output from this operation looks something like the following (JSON format).
[
"arn:aws:rds:us-east-1:123456789012:cluster:sample-cluster"
]
Example - Finding ARNs for multiple parameter groups
For Linux, macOS, or Unix:
aws docdb describe-db-cluster-parameter-groups \
--query 'DBClusterParameterGroups[*].DBClusterParameterGroupArn'
For Windows:
aws docdb describe-db-cluster-parameter-groups ^
--query 'DBClusterParameterGroups[*].DBClusterParameterGroupArn'
Output from this operation looks something like the following (JSON format).
[
"arn:aws:rds:us-east-1:123456789012:cluster-pg:custom3-6-param-grp",
"arn:aws:rds:us-east-1:123456789012:cluster-pg:default.aurora5.6",
"arn:aws:rds:us-east-1:123456789012:cluster-pg:default.docdb3.6"
]