Serverless FHIR Patient Converter
Purpose: Working example of using DynamoDB Streams, EventBridge Pipes and an Enrichment Lambda to convert a make-believe patient into a FHIR Patient.
Getting Started
Deploying
First off, install Node.js
# install AWS CDK
npm install -g aws-cdk
# clone the repository
cd serverless-fhir-patient-converter
npm installOnce dependencies have been installed, you are ready to run CDK
cdk deployDestroying
Simply run:
cdk destroyImplementation
You'll want to create a base patient record to work with. This one is a good sample.
{
"address": {
"state": "FL",
"city": "Tampa",
"address1": "453 Ralph Road",
"postalCode": "33612"
},
"id": "abc",
"birthDate": "07-13-1991",
"firstName": "John",
"lastName": "Smith"
}For a further and in-depth review of how to use this repository and what it supports, head on over the Blog Article