List Repositories
codeartifact_list_repositories | R Documentation |
Returns a list of RepositorySummary objects¶
Description¶
Returns a list of
RepositorySummary
objects. Each RepositorySummary
contains information about a
repository in the specified Amazon Web Services account and that matches
the input parameters.
Usage¶
Arguments¶
repositoryPrefix
A prefix used to filter returned repositories. Only repositories with names that start with
repositoryPrefix
are returned.maxResults
The maximum number of results to return per page.
nextToken
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Value¶
A list with the following syntax:
list(
repositories = list(
list(
name = "string",
administratorAccount = "string",
domainName = "string",
domainOwner = "string",
arn = "string",
description = "string",
createdTime = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)