View source: R/textract_operations.R
textract_create_adapter | R Documentation |
Creates an adapter, which can be fine-tuned for enhanced performance on user provided documents. Takes an AdapterName and FeatureType. Currently the only supported feature type is QUERIES
. You can also provide a Description, Tags, and a ClientRequestToken. You can choose whether or not the adapter should be AutoUpdated with the AutoUpdate argument. By default, AutoUpdate is set to DISABLED.
See https://www.paws-r-sdk.com/docs/textract_create_adapter/ for full documentation.
textract_create_adapter(
AdapterName,
ClientRequestToken = NULL,
Description = NULL,
FeatureTypes,
AutoUpdate = NULL,
Tags = NULL
)
AdapterName |
[required] The name to be assigned to the adapter being created. |
ClientRequestToken |
Idempotent token is used to recognize the request. If the same token is used with multiple CreateAdapter requests, the same session is returned. This token is employed to avoid unintentionally creating the same session multiple times. |
Description |
The description to be assigned to the adapter being created. |
FeatureTypes |
[required] The type of feature that the adapter is being trained on. Currrenly,
supported feature types are: |
AutoUpdate |
Controls whether or not the adapter should automatically update. |
Tags |
A list of tags to be added to the adapter. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.