

Terjemahan disediakan oleh mesin penerjemah. Jika konten terjemahan yang diberikan bertentangan dengan versi bahasa Inggris aslinya, utamakan versi bahasa Inggris.

# Mengganti nama perekam konfigurasi terkelola pelanggan
<a name="managing-recorder_console-rename"></a>

Anda harus menggunakan AWS CLI untuk mengganti nama perekam konfigurasi terkelola pelanggan. Untuk mengubah nama perekam konfigurasi terkelola pelanggan, Anda harus menghapusnya dan membuat perekam konfigurasi baru dengan nama yang Anda tentukan. 

**Mengganti nama perekam konfigurasi terkelola pelanggan menggunakan AWS CLI**

1. Gunakan [https://docs.aws.amazon.com/cli/latest/reference/configservice/describe-configuration-recorders.html](https://docs.aws.amazon.com/cli/latest/reference/configservice/describe-configuration-recorders.html)perintah untuk mencari nama perekam konfigurasi terkelola pelanggan Anda saat ini:

   ```
   $ aws configservice describe-configuration-recorders
   {
       "ConfigurationRecorders": [
           {
               "roleARN": "arn:aws:iam::012345678912:role/myConfigRole",
               "name": "default"
           }
       ]
   }
   ```

1. Gunakan [https://docs.aws.amazon.com/cli/latest/reference/configservice/delete-configuration-recorder.html](https://docs.aws.amazon.com/cli/latest/reference/configservice/delete-configuration-recorder.html)perintah untuk menghapus perekam konfigurasi saat ini yang dikelola pelanggan Anda:

   ```
   $ aws configservice delete-configuration-recorder --configuration-recorder-name default
   ```

1. Gunakan [https://docs.aws.amazon.com/cli/latest/reference/configservice/put-configuration-recorder.html](https://docs.aws.amazon.com/cli/latest/reference/configservice/put-configuration-recorder.html)perintah untuk membuat perekam konfigurasi terkelola pelanggan dengan nama baru:

   ```
   $ aws configservice put-configuration-recorder --configuration-recorder name=configRecorderName,roleARN=arn:aws:iam::012345678912:role/myConfigRole
   ```

1. Gunakan [https://docs.aws.amazon.com/cli/latest/reference/configservice/start-configuration-recorder.html](https://docs.aws.amazon.com/cli/latest/reference/configservice/start-configuration-recorder.html)perintah untuk melanjutkan perekaman:

   ```
   $ aws configservice start-configuration-recorder --configuration-recorder-name configRecorderName
   ```