

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

# 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)

# Neptune ARN 생성
<a name="tagging-arns-constructing"></a>

다음 구문을 사용하여 Amazon Neptune 리소스에 대한 ARN을 생성할 수 있습니다. 참고로 Neptune은 Amazon RDS ARN의 형식을 공유합니다.

 `arn:aws:rds:<region>:<account number>:<resourcetype>:<name>` 

다음 표에는 특정 Neptune 관리 리소스 유형에 대한 ARN을 구성할 때 사용해야 하는 형식이 나와 있습니다.


****  

| 리소스 유형 | ARN 형식 | 
| --- | --- | 
| DB 인스턴스  |  arn:aws:rds:*<region>*:*<account>*`:db:`*<name>* 예제: <pre>arn:aws:rds:us-east-2:123456789012:db:my-instance-1</pre>  | 
| DB 클러스터 |  arn:aws:rds:*<region>*:*<account>*`:cluster:`*<name>* 예제: <pre>arn:aws:rds:us-east-2:123456789012:cluster:my-cluster-1</pre>  | 
| 이벤트 구독  |  arn:aws:rds:*<region>*:*<account>*`:es:`*<name>* 예제: <pre>arn:aws:rds:us-east-2:123456789012:es:my-subscription</pre>  | 
| DB 파라미터 그룹  |  arn:aws:rds:*<region>*:*<account>*`:pg:`*<name>* 예제: <pre>arn:aws:rds:us-east-2:123456789012:pg:my-param-enable-logs</pre>  | 
| DB 클러스터 파라미터 그룹  |  arn:aws:rds:*<region>*:*<account>*`:cluster-pg:`*<name>* 예제: <pre>arn:aws:rds:us-east-2:123456789012:cluster-pg:my-cluster-param-timezone</pre>  | 
| DB 클러스터 스냅샷  |  arn:aws:`rds:`*<region>*:*<account>*`:cluster-snapshot:`*<name>* 예제: <pre>arn:aws:rds:us-east-2:123456789012:cluster-snapshot:my-snap-20160809</pre>  | 
| DB 서브넷 그룹  |  arn:aws:`rds:`*<region>*:*<account>*`:subgrp:`*<name>* 예제: <pre>arn:aws:rds:us-east-2:123456789012:subgrp:my-subnet-10</pre>  | 

## 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 속성이 나와 있습니다.


****  
[\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/ko_kr/neptune/latest/userguide/tagging-arns.html)

예를 들어 다음 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 속성을 사용할 수 있습니다.


****  
[\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/ko_kr/neptune/latest/userguide/tagging-arns.html)