There are more AWS SDK examples available in the AWS Doc SDK Examples
Use DeleteRepository with a CLI
The following code examples show how to use DeleteRepository.
- CLI
-
- AWS CLI
-
To delete a repository
This example shows how to delete an AWS CodeCommit repository.
Command:
aws codecommit delete-repository --repository-nameMyDemoRepoOutput:
{ "repositoryId": "f7579e13-b83e-4027-aaef-650c0EXAMPLE" }-
For API details, see DeleteRepository
in AWS CLI Command Reference.
-
- PowerShell
-
- Tools for PowerShell V4
-
Example 1: This example forcibly deletes the specified repository. The command will prompt for confirmation before proceeding. Add the -Force parameter to delete the repository without a prompt.
Remove-CCRepository -RepositoryName MyDemoRepoOutput:
43ef2443-3372-4b12-9e78-65c27EXAMPLE-
For API details, see DeleteRepository in AWS Tools for PowerShell Cmdlet Reference (V4).
-
- Tools for PowerShell V5
-
Example 1: This example forcibly deletes the specified repository. The command will prompt for confirmation before proceeding. Add the -Force parameter to delete the repository without a prompt.
Remove-CCRepository -RepositoryName MyDemoRepoOutput:
43ef2443-3372-4b12-9e78-65c27EXAMPLE-
For API details, see DeleteRepository in AWS Tools for PowerShell Cmdlet Reference (V5).
-