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¶
MaxResultsThe maximum number of results that are returned per call. You can use
NextTokento obtain more pages of results. The default is 100; the maximum allowed page size is also 100.NextTokenIf
NextTokenis returned, there are more results available. The value ofNextTokenis 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"
)