Skip to content

Update Adapter

textract_update_adapter R Documentation

Update the configuration for an adapter

Description

Update the configuration for an adapter. FeatureTypes configurations cannot be updated. At least one new parameter must be specified as an argument.

Usage

textract_update_adapter(AdapterId, Description, AdapterName, AutoUpdate)

Arguments

AdapterId

[required] A string containing a unique ID for the adapter that will be updated.

Description

The new description to be applied to the adapter.

AdapterName

The new name to be applied to the adapter.

AutoUpdate

The new auto-update status to be applied to the adapter.

Value

A list with the following syntax:

list(
  AdapterId = "string",
  AdapterName = "string",
  CreationTime = as.POSIXct(
    "2015-01-01"
  ),
  Description = "string",
  FeatureTypes = list(
    "TABLES"|"FORMS"|"QUERIES"|"SIGNATURES"|"LAYOUT"
  ),
  AutoUpdate = "ENABLED"|"DISABLED"
)

Request syntax

svc$update_adapter(
  AdapterId = "string",
  Description = "string",
  AdapterName = "string",
  AutoUpdate = "ENABLED"|"DISABLED"
)