

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# Amazon Neptune에서 관리 ARN으로 작업
<a name="tagging-arns"></a>

Amazon Web Services에 생성되는 리소스는 각기 고유한 Amazon 리소스 이름(ARN)으로 식별됩니다. 특정 Amazon Neptune 작업에서는 ARN을 지정하여 Neptune 리소스를 고유한 이름으로 식별해야 합니다.

**중요**  
Amazon Neptune은 [관리 API 참조](api.md)를 사용하는 관리 작업에 이용할 Amazon RDS ARN 형식을 공유합니다. Neptune 관리 ARN에는 `rds`는 포함되지만, `neptune-db`는 포함되지 않습니다. Neptune 데이터 리소스를 식별하는 데이터 영역 ARN의 경우 [데이터 리소스 지정](iam-data-resources.md)을 참조하세요.

**Topics**
+ [Neptune ARN 생성](tagging-arns-constructing.md)
+ [Amazon Neptune에서 기존 ARN 가져오기](#tagging-arns-getting)

## Amazon Neptune에서 기존 ARN 가져오기
<a name="tagging-arns-getting"></a>

 AWS Management Console, AWS Command Line Interface (AWS CLI) 또는 Neptune API를 사용하여 Neptune 리소스의 ARN을 가져올 수 있습니다.

### 를 사용하여 기존 ARN 가져오기 AWS Management Console
<a name="tagging-arns-console"></a>

콘솔을 사용해 ARN을 확인하려면 ARN을 보려는 리소스를 탐색하여 해당 리소스의 세부 정보를 확인합니다. 예를 들어 DB 인스턴스의 ARN을 가져오려면 탐색 패널에서 **인스턴스**를 선택하고 목록에서 원하는 인스턴스를 선택합니다. ARN은 **인스턴스 세부 정보** 섹션에 있습니다.

### 를 사용하여 기존 ARN 가져오기 AWS CLI
<a name="tagging-arns-cli"></a>

 AWS CLI 를 사용하여 특정 Neptune 리소스에 대한 ARN을 가져오려면 해당 리소스에 대한 `describe` 명령을 사용합니다. 다음 표에는 각 AWS CLI 명령과 명령과 함께 사용하여 ARN을 가져오는 ARN 속성이 나와 있습니다.


****  

| AWS CLI 명령 | ARN 속성 | 
| --- | --- | 
|  [describe-event-subscriptions](https://docs.aws.amazon.com/cli/latest/reference/neptune/describe-event-subscriptions.html)  | EventSubscriptionArn | 
|  [describe-certificates](https://docs.aws.amazon.com/cli/latest/reference/neptune/describe-certificates.html) | CertificateArn | 
|  [describe-db-parameter-groups](https://docs.aws.amazon.com/cli/latest/reference/neptune/describe-db-parameter-groups.html) | DBParameterGroupArn | 
|  [describe-db-cluster-parameter-groups](https://docs.aws.amazon.com/cli/latest/reference/neptune/describe-db-cluster-parameter-groups.html) | DBClusterParameterGroupArn | 
|  [describe-db-instances](https://docs.aws.amazon.com/cli/latest/reference/neptune/describe-db-instances.html) | DBInstanceArn | 
|  [describe-events](https://docs.aws.amazon.com/cli/latest/reference/neptune/describe-events.html) | SourceArn | 
|  [describe-db-subnet-groups](https://docs.aws.amazon.com/cli/latest/reference/neptune/describe-db-subnet-groups.html) | DBSubnetGroupArn | 
|  [describe-db-clusters](https://docs.aws.amazon.com/cli/latest/reference/neptune/describe-db-clusters.html) | DBClusterArn | 
|  [describe-db-cluster-snapshots](https://docs.aws.amazon.com/cli/latest/reference/neptune/describe-db-cluster-snapshots.html) | DBClusterSnapshotArn | 

예를 들어 다음 AWS CLI 명령은 DB 인스턴스의 ARN을 가져옵니다.

**Example**  
Linux, OS X, Unix의 경우:  

```
1. aws neptune describe-db-instances \
2. --db-instance-identifier {{DBInstanceIdentifier}} \
3. --region {{us-west-2}}
```
Windows의 경우:  

```
1. aws neptune describe-db-instances ^
2. --db-instance-identifier {{DBInstanceIdentifier}} ^
3. --region {{us-west-2}}
```

### API를 사용하여 기존 ARN 가져오기
<a name="tagging-arns-api"></a>

특정 Neptune 리소스의 ARN을 가져오려면 다음과 같은 API 작업을 호출하고 ARN 속성을 사용할 수 있습니다.


****  

| Neptune API 작업 | ARN 속성 | 
| --- | --- | 
|  [DescribeEventSubscriptions](API_DescribeEventSubscriptions.html) | EventSubscriptionArn | 
|  [DescribeCertificates](API_DescribeCertificates.html) | CertificateArn | 
|  [DescribeDBParameterGroups](API_DescribeDBParameterGroups.html) | DBParameterGroupArn | 
|  [DescribeDBClusterParameterGroups](API_DescribeDBClusterParameterGroups.html) | DBClusterParameterGroupArn | 
|  [DescribeDBInstances](API_DescribeDBInstances.html) | DBInstanceArn | 
|  [DescribeEvents](API_DescribeEvents.html) | SourceArn | 
|  [DescribeDBSubnetGroups](API_DescribeDBSubnetGroups.html) | DBSubnetGroupArn | 
|  [DescribeDBClusters](API_DescribeDBClusters.html) | DBClusterArn | 
|  [DescribeDBClusterSnapshots](API_DescribeDBClusterSnapshots.html) | DBClusterSnapshotArn | 