List Data Tables
| connect_list_data_tables | R Documentation |
Lists all data tables for the specified Amazon Connect instance¶
Description¶
Lists all data tables for the specified Amazon Connect instance. Returns summary information for each table including basic metadata and modification details.
Usage¶
connect_list_data_tables(InstanceId, NextToken, MaxResults)
Arguments¶
InstanceId |
[required] The unique identifier for the Amazon Connect instance whose data tables should be listed. |
NextToken |
Specify the pagination token from a previous request to retrieve the next page of results. |
MaxResults |
The maximum number of data tables to return in one page of results. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
DataTableSummaryList = list(
list(
Name = "string",
Id = "string",
Arn = "string",
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedRegion = "string"
)
)
)
Request syntax¶
svc$list_data_tables(
InstanceId = "string",
NextToken = "string",
MaxResults = 123
)