CodeCommit.Client.
list_repositories
(**kwargs)¶Gets information about one or more repositories.
See also: AWS API Documentation
Request Syntax
response = client.list_repositories(
nextToken='string',
sortBy='repositoryName'|'lastModifiedDate',
order='ascending'|'descending'
)
dict
Response Syntax
{
'repositories': [
{
'repositoryName': 'string',
'repositoryId': 'string'
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
Represents the output of a list repositories operation.
repositories (list) --
Lists the repositories called by the list repositories operation.
(dict) --
Information about a repository name and ID.
repositoryName (string) --
The name associated with the repository.
repositoryId (string) --
The ID associated with the repository.
nextToken (string) --
An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.
Exceptions
CodeCommit.Client.exceptions.InvalidSortByException
CodeCommit.Client.exceptions.InvalidOrderException
CodeCommit.Client.exceptions.InvalidContinuationTokenException