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¶
Arguments¶
AfterCreationTimeSpecifies the lower bound for the ListAdapters operation. Ensures ListAdapters returns only adapters created after the specified creation time.
BeforeCreationTimeSpecifies the upper bound for the ListAdapters operation. Ensures ListAdapters returns only adapters created before the specified creation time.
MaxResultsThe maximum number of results to return when listing adapters.
NextTokenIdentifies 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"
)