CLI와 ListRepositories 함께 사용 - AWS SDK 코드 예제

AWS Doc SDK ExamplesWord AWS SDK 리포지토리에는 더 많은 GitHub 예제가 있습니다.

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

CLI와 ListRepositories 함께 사용

다음 코드 예제는 ListRepositories의 사용 방법을 보여 줍니다.

CLI
AWS CLI

리포지토리 목록을 보려면

이 예제에서는 사용자 AWS 계정과 연결된 모든 AWS CodeCommit 리포지토리를 나열합니다.

명령:

aws codecommit list-repositories

출력:

{ "repositories": [ { "repositoryName": "MyDemoRepo" "repositoryId": "f7579e13-b83e-4027-aaef-650c0EXAMPLE", }, { "repositoryName": "MyOtherDemoRepo" "repositoryId": "cfc29ac4-b0cb-44dc-9990-f6f51EXAMPLE" } ] }
  • API 세부 정보는 AWS CLI 명령 참조ListRepositories를 참조하세요.

PowerShell
for PowerShell 도구

예제 1:이 예제에서는 모든 리포지토리를 리포지토리 이름별로 오름차순으로 나열합니다.

Get-CCRepositoryList -Order Ascending -SortBy RepositoryName

출력:

RepositoryId RepositoryName ------------ -------------- c7d0d2b0-ce40-4303-b4c3-38529EXAMPLE MyDemoRepo 05f30c66-e3e3-4f91-a0cd-1c84aEXAMPLE MyNewRepo
  • API 세부 정보는 AWS Tools for PowerShell Cmdlet 참조ListRepositories를 참조하세요.