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¶
voiceid_list_domains(MaxResults, NextToken)
Arguments¶
| MaxResults | The maximum number of results that are returned per call. You can
use  | 
| NextToken | If  | 
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"
)
Request syntax¶
svc$list_domains(
  MaxResults = 123,
  NextToken = "string"
)