List Adapters
textract_list_adapters | R Documentation |
Lists all adapters that match the specified filtration criteria¶
Description¶
Lists all adapters that match the specified filtration criteria.
Usage¶
textract_list_adapters(AfterCreationTime, BeforeCreationTime,
MaxResults, NextToken)
Arguments¶
AfterCreationTime |
Specifies the lower bound for the ListAdapters operation. Ensures ListAdapters returns only adapters created after the specified creation time. |
BeforeCreationTime |
Specifies the upper bound for the ListAdapters operation. Ensures ListAdapters returns only adapters created before the specified creation time. |
MaxResults |
The maximum number of results to return when listing adapters. |
NextToken |
Identifies the next page of results to return when listing adapters. |
Value¶
A list with the following syntax:
list(
Adapters = list(
list(
AdapterId = "string",
AdapterName = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
FeatureTypes = list(
"TABLES"|"FORMS"|"QUERIES"|"SIGNATURES"|"LAYOUT"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_adapters(
AfterCreationTime = as.POSIXct(
"2015-01-01"
),
BeforeCreationTime = as.POSIXct(
"2015-01-01"
),
MaxResults = 123,
NextToken = "string"
)