Skip to content

ListAdapters

Source: src/AWS/Textract/ListAdapters.ts

Runtime binding for textract:ListAdapters — list the Textract adapters in the account/region.

// init
const listAdapters = yield* AWS.Textract.ListAdapters();
// runtime
const result = yield* listAdapters();
const names = (result.Adapters ?? []).map((a) => a.AdapterName);