Topic 1 Question 192
2 つ選択A hospital wants to create digital copies for its large collection of historical written records. The hospital will continue to add hundreds of new documents each day. The hospital’s data team will scan the documents and will upload the documents to the AWS Cloud.
A solutions architect must implement a solution to analyze the documents, extract the medical information, and store the documents so that an application can run SQL queries on the data. The solution must maximize scalability and operational efficiency.
Which combination of steps should the solutions architect take to meet these requirements?
Write the document information to an Amazon EC2 instance that runs a MySQL database.
Write the document information to an Amazon S3 bucket. Use Amazon Athena to query the data.
Create an Auto Scaling group of Amazon EC2 instances to run a custom application that processes the scanned files and extracts the medical information.
Create an AWS Lambda function that runs when new documents are uploaded. Use Amazon Rekognition to convert the documents to raw text. Use Amazon Transcribe Medical to detect and extract relevant medical information from the text.
Create an AWS Lambda function that runs when new documents are uploaded. Use Amazon Textract to convert the documents to raw text. Use Amazon Comprehend Medical to detect and extract relevant medical information from the text.
ユーザの投票
コメント(17)
B and E are correct. Textract to extract text from files. Rekognition can also be used for text detection but after Rekognition - it's mentioned that Transcribe is used. Transcribe is used for Speech to Text. So that option D may not be valid.
👍 7KADSM2022/11/28- 正解だと思う選択肢: BE
answer BE
👍 4mj982022/11/30 - 正解だと思う選択肢: BE
Usually documents it can be few pages with text, so storing large text in Mysql is not very sufficient + deploy it on EC2 required operation overhead, so A is out.
Only Textract is used for converting documents to text and Comprehend Medical to parse medical phrases. So E is correct.
Correct are BE
👍 4romko2022/12/16
シャッフルモード