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¶
Arguments¶
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(
domains = list(
list(
name = "string",
owner = "string",
arn = "string",
status = "Active"|"Deleted",
createdTime = as.POSIXct(
"2015-01-01"
),
encryptionKey = "string"
)
),
nextToken = "string"
)