Lists directories created within an account.
clouddirectory_list_directories(NextToken, MaxResults, state)A list with the following syntax:
list(
  Directories = list(
    list(
      Name = "string",
      DirectoryArn = "string",
      State = "ENABLED"|"DISABLED"|"DELETED",
      CreationDateTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)
The pagination token.
The maximum number of results to retrieve.
The state of the directories in the list. Can be either Enabled, Disabled, or Deleted.
svc$list_directories(
  NextToken = "string",
  MaxResults = 123,
  state = "ENABLED"|"DISABLED"|"DELETED"
)