

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

# Amazon Route 53 Profile에 연결된 VPC 보기
<a name="profiles-vpcs-editing"></a>

콘솔 탭을 선택하여 VPC 연결에 대한 Route 53 Profile을 보고 편집합니다. 프로파일과 VPC 연결을 나열하거나 특정 연결에 대한 정보를 가져오는 AWS CLI 데 사용할 CLI 탭을 선택합니다.
+ [콘솔](#profiles-vpcs-editing-console)
+ [CLI](#profiles-vpcs-editing-CLI)

------
#### [ Console ]<a name="profiles-vpcs-editing-procedure"></a>

**프로파일에 연결된 VPC를 보려면**

1. 에 로그인 AWS Management Console 하고 [https://console.aws.amazon.com/route53/](https://console.aws.amazon.com/route53/) Route 53 콘솔을 엽니다.

1. 탐색 창에서 **프로필**을 선택합니다.

1. 탐색 모음에서 프로파일을 생성한 리전을 선택합니다.

1. 연결된 VPC를 보려는 프로파일의 이름 옆에 있는 버튼을 선택합니다.

1. **<Profile name>** 페이지에서 **VPC** 탭을 선택합니다.

1. VPC의 탭 페이지에서 연결된 VPC의 이름, ARN, 상태를 볼 수 있습니다.

------
#### [ CLI ]

다음과 같은 AWS CLI 명령을 실행하여 프로파일이 연결된 VPCs를 나열할 수 있습니다.

`aws route53profiles list-profile-associations`

다음은 명령을 실행한 후에 생성되는 출력 예시입니다.

```
{
    "ProfileAssociations": [
        {
            "CreationTime": 1709338817.148,
            "Id": "rpassoc-489ce212fexample",{
    "ProfileAssociations": [
        {
            "CreationTime": 1709338817.148,
            "Id": "rpassoc-489ce212fexample",
            "ModificationTime": 1709338974.772,
            "Name": "test-association",
            "OwnerId": "123456789012",
            "ProfileId": "rp-4987774726example",
            "ResourceId": "vpc-0af3b96b3example",
            "Status": "COMPLETE",
            "StatusMessage": "Created Profile Association"
        }
    ]
}
            "ModificationTime": 1709338974.772,
            "Name": "test-association",
            "OwnerId": "123456789012",
            "ProfileId": "rp-4987774726example",
            "ResourceId": "vpc-0af3b96b3example",
            "Status": "COMPLETE",
            "StatusMessage": "Created Profile Association"
        }
    ]
}
```

다음과 같은 AWS CLI 명령을 실행하고 `profile-association-id`에 대한 자체 값을 사용하여 프로파일이 연결된 특정 VPS에 대한 정보를 얻을 수 있습니다.

`aws route53profiles get-profile-association --profile-association-id rpassoc-489ce212fexample`

다음은 명령을 실행한 후에 생성되는 출력 예시입니다.

```
   "ProfileAssociation": {
        "CreationTime": 1709338817.148,
        "Id": "rrpassoc-489ce212fexample",
        "ModificationTime": 1709338974.772,
        "Name": "test-association",
        "OwnerId": "123456789012",
        "ProfileId": "rp-4987774726example",
        "ResourceId": "vpc-0af3b96b3example",
        "Status": "COMPLETE",
        "StatusMessage": "Created Profile Association"
    }   ]
}
```

------

## Amazon Route 53 Profile에서 VPC 연결 해제
<a name="profiles-disassociate-vpc"></a>

Route 53 콘솔 또는를 사용하여 VPC에서 Route 53 Profile의 연결을 해제하려면 탭을 선택합니다 AWS CLI.
+ [콘솔](#profile-disassociating-vpc-console)
+ [CLI](#profile-disassociating-vpc-CLI)

------
#### [ Console ]<a name="profile-disassociating-vpc-procedure"></a>

**Route 53 Profile에 연결된 VPC를 연결 해제하려면**

1. 에 로그인 AWS Management Console 하고 [https://console.aws.amazon.com/route53/](https://console.aws.amazon.com/route53/) Route 53 콘솔을 엽니다.

1. 탐색 창에서 **프로필**을 선택합니다.

1. 탐색 모음에서 VPC를 연결 해제하려는 프로파일이 생성된 리전을 선택합니다.

1. VPC 연결을 해제하려는 프로파일의 이름 옆에 있는 버튼을 선택합니다.

1. **<Profile name>** 페이지에서 **VPC** 탭을 선택합니다.

1. 리소스의 VPC 탭 페이지에서 연결 해제하려는 VPC를 선택한 다음 **연결 해제**를 선택합니다.

1. **리소스 연결 해제** 대화 상자에서 **confirm**를 입력한 다음 **연결 해제**를 선택합니다.

------
#### [ CLI ]

다음과 같은 AWS CLI 명령을 실행하고 `profile-id` 및에 대한 자체 값을 사용하여 VPC에서 프로파일을 연결 해제할 수 있습니다. `--resource-id` 

`aws route53profiles disassociate-profile --profile-id rp-4987774726example --resource-id vpc-0af3b96b3example`

다음은 명령을 실행한 후에 생성되는 출력 예시입니다.

```
"ProfileAssociation": {
        "CreationTime": 1710851336.527,
        "Id": "rpassoc-489ce212fexample",
        "ModificationTime": 1710851401.362,
        "Name": "test-association",
        "OwnerId": "123456789012",
        "ProfileId": "rp-4987774726example",
        "ResourceId": "vpc-0af3b96b3example",
        "Status": "DELETING",
        "StatusMessage": "Deleting Profile Association"
    }
```

------