List Adapter Versions
| textract_list_adapter_versions | R Documentation |
List all version of an adapter that meet the specified filtration criteria¶
Description¶
List all version of an adapter that meet the specified filtration criteria.
Usage¶
textract_list_adapter_versions(AdapterId, AfterCreationTime,
BeforeCreationTime, MaxResults, NextToken)
Arguments¶
AdapterIdA string containing a unique ID for the adapter to match for when listing adapter versions.
AfterCreationTimeSpecifies the lower bound for the ListAdapterVersions operation. Ensures ListAdapterVersions returns only adapter versions created after the specified creation time.
BeforeCreationTimeSpecifies the upper bound for the ListAdapterVersions operation. Ensures ListAdapterVersions returns only adapter versions created after the specified creation time.
MaxResultsThe maximum number of results to return when listing adapter versions.
NextTokenIdentifies the next page of results to return when listing adapter versions.
Value¶
A list with the following syntax:
list(
AdapterVersions = list(
list(
AdapterId = "string",
AdapterVersion = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
FeatureTypes = list(
"TABLES"|"FORMS"|"QUERIES"|"SIGNATURES"|"LAYOUT"
),
Status = "ACTIVE"|"AT_RISK"|"DEPRECATED"|"CREATION_ERROR"|"CREATION_IN_PROGRESS",
StatusMessage = "string"
)
),
NextToken = "string"
)