List Repositories in Domain
| codeartifact_list_repositories_in_domain | 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 domain and that matches the input
parameters.
Usage¶
codeartifact_list_repositories_in_domain(domain, domainOwner,
administratorAccount, repositoryPrefix, maxResults, nextToken)
Arguments¶
domain[required] The name of the domain that contains the returned list of repositories.
domainOwnerThe 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
administratorAccountFilter the list of repositories to only include those that are managed by the Amazon Web Services account ID.
repositoryPrefixA prefix used to filter returned repositories. Only repositories with names that start with
repositoryPrefixare returned.maxResultsThe maximum number of results to return per page.
nextTokenThe 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"
)