List Domains
datazone_list_domains | R Documentation |
Lists Amazon DataZone domains¶
Description¶
Lists Amazon DataZone domains.
Usage¶
Arguments¶
maxResults
The maximum number of domains to return in a single call to
list_domains
. When the number of domains to be listed is greater than the value ofMaxResults
, the response contains aNextToken
value that you can use in a subsequent call tolist_domains
to list the next set of domains.nextToken
When the number of domains is greater than the default value for the
MaxResults
parameter, or if you explicitly specify a value forMaxResults
that is less than the number of domains, the response includes a pagination token namedNextToken
. You can specify thisNextToken
value in a subsequent call tolist_domains
to list the next set of domains.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",
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"
)