Ada lebih banyak contoh AWS SDK yang tersedia di repo Contoh SDK AWS Doc
Terjemahan disediakan oleh mesin penerjemah. Jika konten terjemahan yang diberikan bertentangan dengan versi bahasa Inggris aslinya, utamakan versi bahasa Inggris.
Gunakan DeleteRepository
dengan CLI
Contoh kode berikut menunjukkan cara menggunakanDeleteRepository
.
- CLI
-
- AWS CLI
-
Untuk menghapus repositori
Contoh ini menunjukkan cara menghapus AWS CodeCommit repositori.
Perintah:
aws codecommit delete-repository --repository-name
MyDemoRepo
Output:
{ "repositoryId": "f7579e13-b83e-4027-aaef-650c0EXAMPLE" }
-
Untuk detail API, lihat DeleteRepository
di Referensi AWS CLI Perintah.
-
- PowerShell
-
- Alat untuk PowerShell V4
-
Contoh 1: Contoh ini secara paksa menghapus repositori yang ditentukan. Perintah akan meminta konfirmasi sebelum melanjutkan. Tambahkan parameter -Force untuk menghapus repositori tanpa prompt.
Remove-CCRepository -RepositoryName MyDemoRepo
Output:
43ef2443-3372-4b12-9e78-65c27EXAMPLE
-
Untuk detail API, lihat DeleteRepositorydi Referensi Alat AWS untuk PowerShell Cmdlet (V4).
-
- Alat untuk PowerShell V5
-
Contoh 1: Contoh ini secara paksa menghapus repositori yang ditentukan. Perintah akan meminta konfirmasi sebelum melanjutkan. Tambahkan parameter -Force untuk menghapus repositori tanpa prompt.
Remove-CCRepository -RepositoryName MyDemoRepo
Output:
43ef2443-3372-4b12-9e78-65c27EXAMPLE
-
Untuk detail API, lihat DeleteRepositorydi Referensi Alat AWS untuk PowerShell Cmdlet (V5).
-