

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

# Amazon Route 53 Profiles 보기 및 업데이트
<a name="profiles-editing"></a>

콘솔 탭을 선택하여 Route 53 Profile을 보고 편집합니다. 소유하거나, 공유하거나, 공유하는 프로필을 나열하는 AWS CLI 데 사용할 CLI 탭을 선택합니다.
+ [콘솔](#profile-editing-console)
+ [CLI](#profile-editing-CLI)

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

**Route 53 Profiles 보기 및 업데이트**

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

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

1. 보거나 편집하려는 프로파일의 이름 옆에 있는 버튼을 선택합니다.

1. **<Profile name>** 페이지에서 현재 연결된 DNS 리소스를 보고, 새 리소스를 연결하고, 태그와 VPC 구성을 편집할 수 있습니다.

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

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

`aws route53profiles list-profiles`

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

```
{
    "ProfileSummaries": [
        {
            "Arn": "arn:aws:route53profiles:us-east-1:123456789012:profile/rp-4987774726example",
            "Id": "rp-4987774726example",
            "Name": "test",
            "ShareStatus": "NOT_SHARED"
        }
    ]
}
```

다음과 같은 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 삭제
<a name="profiles-deleting"></a>

Route 53 콘솔을 사용하여 Route 53 Profile을 삭제하려면 탭을 선택합니다 AWS CLI. 또는
+ [콘솔](#profile-delete-console)
+ [CLI](#profile-delete-CLI)

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

**Route 53 Profile을 삭제하려면**

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

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

1. 삭제할 프로파일 이름 옆에 있는 버튼을 선택한 다음 **삭제**를 선택합니다.
**중요**  
VPC에 연결된 프로파일은 삭제할 수 없습니다. 또한 프로파일이 다른와 공유되는 경우 프로파일 구성이 연결된 AWS 계정모든 VPCs는 해당 구성을 잃게 됩니다.

1. **<Profile name> 삭제** 대화 상자에 **confirm**를 입력한 다음 **삭제**를 선택합니다.

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

**중요**  
VPC에 연결된 프로파일은 삭제할 수 없습니다. 또한 프로파일이 다른와 공유되는 경우 프로파일 구성이 연결된 AWS 계정모든 VPCs는 해당 구성을 잃게 됩니다.

다음과 같은 AWS CLI 명령을 실행하고 자체 값을 사용하여 프로필을 삭제할 수 있습니다`profile-id`.

`aws route53profiles delete-profile --profile-id rp-6ffe47d5example`

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

```
{
    "Profile": {
        "Arn": "arn:aws:route53profiles:us-east-1:123456789012:profile/rp-6ffe47d5example",
        "ClientToken": "0a15fec0-05d9-4f78-bec0-EXAMPLE11111",
        "CreationTime": 1710850903.578,
        "Id": "rp-6ffe47d5example",
        "ModificationTime": 1710850903.578,
        "Name": "test",
        "OwnerId": "123456789012",
        "ShareStatus": "NOT_SHARED",
        "Status": "DELETED",
        "StatusMessage": "Deleted Profile"
    }
}
```

------