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¶
AdapterId |
A string containing a unique ID for the adapter to match for when listing adapter versions. |
AfterCreationTime |
Specifies the lower bound for the ListAdapterVersions operation. Ensures ListAdapterVersions returns only adapter versions created after the specified creation time. |
BeforeCreationTime |
Specifies the upper bound for the ListAdapterVersions operation. Ensures ListAdapterVersions returns only adapter versions created after the specified creation time. |
MaxResults |
The maximum number of results to return when listing adapter versions. |
NextToken |
Identifies 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"
)
Request syntax¶
svc$list_adapter_versions(
AdapterId = "string",
AfterCreationTime = as.POSIXct(
"2015-01-01"
),
BeforeCreationTime = as.POSIXct(
"2015-01-01"
),
MaxResults = 123,
NextToken = "string"
)