Amazon Textract detects and analyzes text in documents and converts it into machine-readable text. This is the API reference documentation for Amazon Textract.
textract(config = list())
A client for the service. You can call the service's operations using
syntax like svc$operation(...)
, where svc
is the name you've assigned
to the client. The available operations are listed in the
Operations section.
Optional configuration of credentials, endpoint, and/or region.
svc <- textract(
config = list(
credentials = list(
creds = list(
access_key_id = "string",
secret_access_key = "string",
session_token = "string"
),
profile = "string"
),
endpoint = "string",
region = "string"
)
)
analyze_document | Analyzes an input document for relationships between detected items |
detect_document_text | Detects text in the input document |
get_document_analysis | Gets the results for an Amazon Textract asynchronous operation that analyzes text in a document |
get_document_text_detection | Gets the results for an Amazon Textract asynchronous operation that detects text in a document |
start_document_analysis | Starts the asynchronous analysis of an input document for relationships between detected items such as key-value pairs, tables, and selection elements |
start_document_text_detection | Starts the asynchronous detection of text in a document |
if (FALSE) {
svc <- textract()
svc$analyze_document(
Foo = 123
)
}
Run the code above in your browser using DataLab