List Domains
datazone_list_domains | R Documentation |
Lists Amazon DataZone domains¶
Description¶
Lists Amazon DataZone domains.
Usage¶
datazone_list_domains(maxResults, nextToken, status)
Arguments¶
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 |
status |
The status of the data source. |
Value¶
A list with the following syntax:
list(
items = list(
list(
arn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
description = "string",
domainVersion = "V1"|"V2",
id = "string",
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
managedAccountId = "string",
name = "string",
portalUrl = "string",
status = "CREATING"|"AVAILABLE"|"CREATION_FAILED"|"DELETING"|"DELETED"|"DELETION_FAILED"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_domains(
maxResults = 123,
nextToken = "string",
status = "CREATING"|"AVAILABLE"|"CREATION_FAILED"|"DELETING"|"DELETED"|"DELETION_FAILED"
)