My problem is that textract asynchronous method start_document_analysis, has an option for the type of analysis you want to perform, but when I try to use the "Queries" feature =>
FeatureTypes=[
'TABLES'|'FORMS'|'QUERIES',
],
you would have to pass another parameter with the queries list =>
QueriesConfig={
'Queries': [
{
'Text': 'string',
'Alias': 'string',
'Pages': [
'string',
]
},
]
}
once I pass this parameter, boto3 throws an exception that Queries config is not recognized as one of the parameters accepted, have anyone used this feature with python before ?