DocsMarshal.Workflow.ActivityLibrary.AWSv 1.0.0.0

A group of activities which allows you to perform operations with AWS servicies. Three types of servicies are implemented now: S3 storage, TEXTRACT document reader and Detection Operations to obtain informations of a given text.

  • TEXTRACT is a service which allows you to detect the text content from a pdf file or an image. There are two types of detections: Text Detection, which returns a list of blocks without any relationship, and Document Analisys, which is able to get froms or tables relationships.
  • S3 is a storage service which allows you to create buckets and put files into them.
  • Detection Operation: three acivities which allow you to get information of a given text such as the DOMINANT LANGUAGE, the SENTIMENT or ENTITIES such as dates, locations or quantities
This activity library implements Amazon AWS servicies so you have firstly to register and activate them at AWS web page caring also about the pricing because most of them are not free servicies.
To use all these activities some credentials are needed. Learn how to get them looking at Amazon AWS tutorial

DocsMarshal.Workflow.ActivityLibrary.DetectDominantLanguages

This activity dectects the dominant language of an input text and returns the list of all languages found in the text ordered from te most used to the less used.


DocsMarshal.Workflow.ActivityLibrary.DetectEntities

This activity dectects entities such as dates, locations or quantities of an input text and returns the list of them.


DocsMarshal.Workflow.ActivityLibrary.DetectSentiment

This activity dectects entities such as dates, locations or quantities of an input text and returns the list of them.


DocsMarshal.Workflow.ActivityLibrary.FilterEntitiesByType

This activity allows you to filter a list of entities by a specific type.


DocsMarshal.Workflow.ActivityLibrary.S3CopyFile

This activity copies a file from a bucket in AWS S3 to another one.


DocsMarshal.Workflow.ActivityLibrary.S3CreateBucket

This activity creates a bucket in the AWS S3 storage service.


DocsMarshal.Workflow.ActivityLibrary.S3DeleteBucket

This activity deletes a bucket from AWS S3.


DocsMarshal.Workflow.ActivityLibrary.S3DeleteFile

This activity deletes a file from a bucket in AWS S3.


DocsMarshal.Workflow.ActivityLibrary.S3DownloadFile

This activity downloads a file from a bucket in AWS S3.


DocsMarshal.Workflow.ActivityLibrary.S3ListFilesInBucket

This actiivty read the content of a specific bucket in AWS S3 and returns the list of the files inside it.


DocsMarshal.Workflow.ActivityLibrary.S3RenameFile

This activity changes the name a file saved in a bucket in AWS S3.


DocsMarshal.Workflow.ActivityLibrary.S3UploadFile

This activity uploas a file to a bucket in AWS S3.


DocsMarshal.Workflow.ActivityLibrary.TextractDetectText

This activity take in input a PDF file or an image and return its text contents as a list of blocks using AWS Textract Detect Text servie.


DocsMarshal.Workflow.ActivityLibrary.TextractDocumentAnalysis

This activity allows you to analyze a file more specifically than TextractDetectText using the Amazon AWS Textract Analyze Document service.