List Domains
| datazone_list_domains | R Documentation |
Lists Amazon DataZone domains¶
Description¶
Lists Amazon DataZone domains.
Usage¶
datazone_list_domains(status, maxResults, nextToken)
Arguments¶
status |
The status of the data source. |
maxResults |
The maximum number of domains to return in a single call to
|
nextToken |
When the number of domains is greater than the default value for
the |
Value¶
A list with the following syntax:
list(
items = list(
list(
id = "string",
name = "string",
description = "string",
arn = "string",
managedAccountId = "string",
status = "CREATING"|"AVAILABLE"|"CREATION_FAILED"|"DELETING"|"DELETED"|"DELETION_FAILED",
portalUrl = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
domainVersion = "V1"|"V2"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_domains(
status = "CREATING"|"AVAILABLE"|"CREATION_FAILED"|"DELETING"|"DELETED"|"DELETION_FAILED",
maxResults = 123,
nextToken = "string"
)