Amazon Route 53 Profile에 연결된 VPC 보기 - Amazon Route 53

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

Amazon Route 53 Profile에 연결된 VPC 보기

콘솔 탭을 선택하여 VPC 연결에 대한 Route 53 Profile을 보고 편집합니다. 프로파일과 VPC 연결을 나열하거나 특정 연결에 대한 정보를 가져오기 위해 AWS CLI를 사용하려면 CLI 탭을 선택합니다.

Console
프로파일에 연결된 VPC를 보려면
  1. AWS Management Console에 로그인한 후 https://console.aws.amazon.com/route53/에서 Route 53 콘솔을 엽니다.

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

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

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

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

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

CLI

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

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 연결 해제

Route 53 콘솔 또는 AWS CLI를 사용하여 VPC에서 Route 53 Profile을 분리하려면 탭을 선택합니다.

Console
Route 53 Profile에 연결된 VPC를 연결 해제하려면
  1. AWS Management Console에 로그인한 후 https://console.aws.amazon.com/route53/에서 Route 53 콘솔을 엽니다.

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

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

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

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

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

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

CLI

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

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" }