List Domains
| codeartifact_list_domains | R Documentation | 
Returns a list of DomainSummary objects for all domains owned by the Amazon Web Services account that makes this call¶
Description¶
Returns a list of
DomainSummary
objects for all domains owned by the Amazon Web Services account that
makes this call. Each returned DomainSummary object contains
information about a domain.
Usage¶
codeartifact_list_domains(maxResults, nextToken)
Arguments¶
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(
  domains = list(
    list(
      name = "string",
      owner = "string",
      arn = "string",
      status = "Active"|"Deleted",
      createdTime = as.POSIXct(
        "2015-01-01"
      ),
      encryptionKey = "string"
    )
  ),
  nextToken = "string"
)
Request syntax¶
svc$list_domains(
  maxResults = 123,
  nextToken = "string"
)