List Domains
voiceid_list_domains | R Documentation |
Lists all the domains in the Amazon Web Services account¶
Description¶
Lists all the domains in the Amazon Web Services account.
Usage¶
Arguments¶
MaxResults
The maximum number of results that are returned per call. You can use
NextToken
to obtain more pages of results. The default is 100; the maximum allowed page size is also 100.NextToken
If
NextToken
is returned, there are more results available. The value ofNextToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.
Value¶
A list with the following syntax:
list(
DomainSummaries = list(
list(
Arn = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
Description = "string",
DomainId = "string",
DomainStatus = "ACTIVE"|"PENDING"|"SUSPENDED",
Name = "string",
ServerSideEncryptionConfiguration = list(
KmsKeyId = "string"
),
ServerSideEncryptionUpdateDetails = list(
Message = "string",
OldKmsKeyId = "string",
UpdateStatus = "IN_PROGRESS"|"COMPLETED"|"FAILED"
),
UpdatedAt = as.POSIXct(
"2015-01-01"
),
WatchlistDetails = list(
DefaultWatchlistId = "string"
)
)
),
NextToken = "string"
)