Terjemahan disediakan oleh mesin penerjemah. Jika konten terjemahan yang diberikan bertentangan dengan versi bahasa Inggris aslinya, utamakan versi bahasa Inggris.
Melihat Perekam Konfigurasi
Anda harus menggunakan AWS CLI untuk melihat detail tentang perekam konfigurasi.
Contoh kode berikut menunjukkan cara menggunakanDescribeConfigurationRecorders
.
- CLI
-
- AWS CLI
-
Untuk mendapatkan detail tentang perekam konfigurasi
Perintah berikut mengembalikan rincian tentang perekam konfigurasi default:
aws configservice describe-configuration-recorders
Output:
{ "ConfigurationRecorders": [ { "recordingGroup": { "allSupported": true, "resourceTypes": [], "includeGlobalResourceTypes": true }, "roleARN": "arn:aws:iam::123456789012:role/config-ConfigRole-A1B2C3D4E5F6", "name": "default" } ] }
-
Untuk detail API, lihat DescribeConfigurationRecorders
di Referensi AWS CLI Perintah.
-
- PowerShell
-
- Alat untuk PowerShell
-
Contoh 1: Contoh ini mengembalikan rincian perekam konfigurasi.
Get-CFGConfigurationRecorder | Format-List
Output:
Name : default RecordingGroup : Amazon.ConfigService.Model.RecordingGroup RoleARN : arn:aws:iam::123456789012:role/aws-service-role/config.amazonaws.com/AWSServiceRoleForConfig
-
Untuk detail API, lihat DescribeConfigurationRecordersdi Referensi AWS Tools for PowerShell Cmdlet.
-
Contoh kode berikut menunjukkan cara menggunakanDescribeConfigurationRecorderStatus
.
- CLI
-
- AWS CLI
-
Untuk mendapatkan informasi status untuk perekam konfigurasi
Perintah berikut mengembalikan status perekam konfigurasi default:
aws configservice describe-configuration-recorder-status
Output:
{ "ConfigurationRecordersStatus": [ { "name": "default", "lastStatus": "SUCCESS", "recording": true, "lastStatusChangeTime": 1452193834.344, "lastStartTime": 1441039997.819, "lastStopTime": 1441039992.835 } ] }
-
Untuk detail API, lihat DescribeConfigurationRecorderStatus
di Referensi AWS CLI Perintah.
-
- PowerShell
-
- Alat untuk PowerShell
-
Contoh 1: Sampel ini mengembalikan status perekam konfigurasi.
Get-CFGConfigurationRecorderStatus
Output:
LastErrorCode : LastErrorMessage : LastStartTime : 10/11/2019 10:13:51 AM LastStatus : Success LastStatusChangeTime : 12/31/2019 6:14:12 AM LastStopTime : 10/11/2019 10:13:46 AM Name : default Recording : True
-
Untuk detail API, lihat DescribeConfigurationRecorderStatusdi Referensi AWS Tools for PowerShell Cmdlet.
-