├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── insurance.ts ├── cdk.json ├── event-catalog ├── .dockerignore ├── Dockerfile ├── README.md ├── domains │ └── Insurance │ │ └── index.md ├── event-catalog-ui.png ├── eventcatalog.config.js ├── events │ ├── ClaimAccepted │ │ ├── index.md │ │ └── schema.json │ ├── ClaimRejected │ │ ├── index.md │ │ └── schema.json │ ├── ClaimRequested │ │ ├── index.md │ │ └── schema.json │ ├── CustomerAccepted │ │ ├── index.md │ │ └── schema.json │ ├── CustomerDocumentUpdated │ │ ├── index.md │ │ └── schema.json │ ├── CustomerRejected │ │ ├── index.md │ │ └── schema.json │ ├── CustomerSubmitted │ │ ├── index.md │ │ └── schema.json │ ├── DocumentProcessed │ │ ├── index.md │ │ └── schema.json │ ├── FraudDetected │ │ ├── index.md │ │ └── schema.json │ ├── FraudNotDetected │ │ ├── index.md │ │ └── schema.json │ ├── S3ObjectCreated │ │ ├── index.md │ │ └── schema.json │ ├── SettlementFinalized │ │ ├── index.md │ │ └── schema.json │ └── VendorFinalized │ │ ├── index.md │ │ └── schema.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── logo.svg │ └── opengraph.png └── services │ ├── AWS S3 Event Notification │ └── index.md │ ├── Claims Service │ └── index.md │ ├── Customer Service │ └── index.md │ ├── Documents Service │ └── index.md │ ├── FNOL API │ └── index.md │ ├── Fraud Service │ └── index.md │ ├── Notifications Service │ └── index.md │ ├── Settlement Service │ └── index.md │ ├── Signup API │ └── index.md │ └── Vendor Service │ └── index.md ├── images ├── claim_form.png ├── claims_domain_architecture.png ├── clear_all.png ├── clear_events.png ├── create_account.png ├── customer_domain_architecture.png ├── damage.png ├── documents_domain_architecture.png ├── email_verify.png ├── fraud_domain_architecture.png ├── landing_page.png ├── new_claim.png ├── notifications_domain_architecture.png ├── overall_architecture.png ├── registration.png ├── select_dl.png ├── settlement_domain_architecture.png └── vendor_domain_architecture.png ├── jest.config.js ├── lib ├── claims-processing-stack.ts ├── cleanup │ ├── app │ │ └── handlers │ │ │ └── delete.js │ └── infra │ │ └── cleanup-service.ts ├── config.ts ├── observability │ └── cw-dashboard │ │ ├── app │ │ └── handlers │ │ │ └── create.js │ │ └── infra │ │ ├── ClaimsProcessingCWDashboard.ts │ │ └── createMetric.ts └── services │ ├── claims │ ├── README.md │ ├── app │ │ └── handlers │ │ │ ├── claimsProcessing.js │ │ │ └── fnol.js │ └── infra │ │ ├── claims-events.ts │ │ ├── claims-service.ts │ │ ├── step-functions │ │ └── updateClaims.ts │ │ └── tests │ │ └── claims-service.test.js │ ├── customer │ ├── README.md │ ├── app │ │ └── handlers │ │ │ ├── get.js │ │ │ ├── preSignedURLGenerator.js │ │ │ ├── putPolicyRequests.js │ │ │ ├── signup.js │ │ │ ├── update.js │ │ │ └── validator.js │ └── infra │ │ ├── customer-events.ts │ │ ├── customer-service.ts │ │ ├── step-functions │ │ ├── createCustomer.ts │ │ └── updatePolicy.ts │ │ └── tests │ │ └── customer-service.test.js │ ├── documents │ ├── README.md │ ├── app │ │ └── handlers │ │ │ ├── analyzeCarImage.js │ │ │ └── textractResponseTransformer.js │ └── infra │ │ ├── documents-events.ts │ │ ├── documents-service.ts │ │ └── tests │ │ └── documents-service.test.js │ ├── fraud │ ├── README.md │ ├── app │ │ └── handlers │ │ │ └── fraudDetection.js │ └── infra │ │ ├── fraud-events.ts │ │ ├── fraud-service.ts │ │ └── tests │ │ └── fraud-service.test.js │ ├── notifications │ ├── README.md │ ├── app │ │ └── handlers │ │ │ ├── iot.index.js │ │ │ └── notifications.js │ └── infra │ │ ├── notifications-service.ts │ │ └── tests │ │ └── notifications-service.test.js │ ├── settlement │ ├── README.md │ ├── app │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── Dockerfile │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── amazon │ │ │ │ │ └── settlement │ │ │ │ │ ├── SettlementApplication.java │ │ │ │ │ ├── config │ │ │ │ │ └── SpringCloudConfig.java │ │ │ │ │ ├── controllers │ │ │ │ │ └── SettlementController.java │ │ │ │ │ ├── model │ │ │ │ │ ├── SettlementRequest.java │ │ │ │ │ ├── SettlementResponse.java │ │ │ │ │ └── input │ │ │ │ │ │ └── generated │ │ │ │ │ │ ├── AWSEvent.java │ │ │ │ │ │ ├── AnalyzedFieldAndValues.java │ │ │ │ │ │ ├── Color.java │ │ │ │ │ │ ├── Damage.java │ │ │ │ │ │ ├── FraudNotDetected.java │ │ │ │ │ │ └── marshaller │ │ │ │ │ │ └── Marshaller.java │ │ │ │ │ ├── repository │ │ │ │ │ └── SettlementRepository.java │ │ │ │ │ └── services │ │ │ │ │ ├── SettlementService.java │ │ │ │ │ └── SubscriberService.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── amazon │ │ │ │ └── settlement │ │ │ │ └── services │ │ │ │ ├── SettlementServiceTest.java │ │ │ │ └── SubscriberServiceTest.java │ │ │ └── resources │ │ │ ├── application-test.properties │ │ │ ├── testdata.json │ │ │ └── testreturndata.json │ └── infra │ │ └── settlement-service.ts │ └── vendor │ ├── README.md │ ├── app │ ├── Dockerfile │ ├── index.js │ └── package.json │ └── infra │ └── vendor-service.ts ├── package.json ├── react-claims ├── .gitignore ├── .vscode │ └── settings.json ├── amplify │ ├── .config │ │ └── project-config.json │ ├── README.md │ ├── backend │ │ ├── auth │ │ │ └── reactclaims6a6543fe │ │ │ │ └── cli-inputs.json │ │ ├── backend-config.json │ │ ├── custom │ │ │ └── unAuthRolePolicy │ │ │ │ ├── parameters.json │ │ │ │ └── unAuthRolePolicy-cloudformation-template.json │ │ ├── hosting │ │ │ └── amplifyhosting │ │ │ │ └── amplifyhosting-template.json │ │ └── tags.json │ ├── cli.json │ └── hooks │ │ └── README.md ├── amplifyPublishIgnore.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Claim.js │ ├── ClearData.js │ ├── DL │ ├── dl_AZ.jpg │ ├── dl_MA.jpg │ └── dl_OH.jpg │ ├── Signup.js │ ├── Updates.js │ ├── UploadFile.js │ ├── Vehicles │ ├── damaged_car_1.jpeg │ ├── damaged_car_2.jpeg │ ├── green_car.jpg │ └── red_car.jpg │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ ├── setupTests.js │ └── utils.js ├── target └── npmlist.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | coverage 4 | node_modules 5 | cdk.out -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/README.md -------------------------------------------------------------------------------- /bin/insurance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/bin/insurance.ts -------------------------------------------------------------------------------- /cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/cdk.json -------------------------------------------------------------------------------- /event-catalog/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/.dockerignore -------------------------------------------------------------------------------- /event-catalog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/Dockerfile -------------------------------------------------------------------------------- /event-catalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/README.md -------------------------------------------------------------------------------- /event-catalog/domains/Insurance/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/domains/Insurance/index.md -------------------------------------------------------------------------------- /event-catalog/event-catalog-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/event-catalog-ui.png -------------------------------------------------------------------------------- /event-catalog/eventcatalog.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/eventcatalog.config.js -------------------------------------------------------------------------------- /event-catalog/events/ClaimAccepted/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/ClaimAccepted/index.md -------------------------------------------------------------------------------- /event-catalog/events/ClaimAccepted/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/ClaimAccepted/schema.json -------------------------------------------------------------------------------- /event-catalog/events/ClaimRejected/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/ClaimRejected/index.md -------------------------------------------------------------------------------- /event-catalog/events/ClaimRejected/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/ClaimRejected/schema.json -------------------------------------------------------------------------------- /event-catalog/events/ClaimRequested/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/ClaimRequested/index.md -------------------------------------------------------------------------------- /event-catalog/events/ClaimRequested/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/ClaimRequested/schema.json -------------------------------------------------------------------------------- /event-catalog/events/CustomerAccepted/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/CustomerAccepted/index.md -------------------------------------------------------------------------------- /event-catalog/events/CustomerAccepted/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/CustomerAccepted/schema.json -------------------------------------------------------------------------------- /event-catalog/events/CustomerDocumentUpdated/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/CustomerDocumentUpdated/index.md -------------------------------------------------------------------------------- /event-catalog/events/CustomerDocumentUpdated/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/CustomerDocumentUpdated/schema.json -------------------------------------------------------------------------------- /event-catalog/events/CustomerRejected/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/CustomerRejected/index.md -------------------------------------------------------------------------------- /event-catalog/events/CustomerRejected/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/CustomerRejected/schema.json -------------------------------------------------------------------------------- /event-catalog/events/CustomerSubmitted/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/CustomerSubmitted/index.md -------------------------------------------------------------------------------- /event-catalog/events/CustomerSubmitted/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/CustomerSubmitted/schema.json -------------------------------------------------------------------------------- /event-catalog/events/DocumentProcessed/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/DocumentProcessed/index.md -------------------------------------------------------------------------------- /event-catalog/events/DocumentProcessed/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/DocumentProcessed/schema.json -------------------------------------------------------------------------------- /event-catalog/events/FraudDetected/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/FraudDetected/index.md -------------------------------------------------------------------------------- /event-catalog/events/FraudDetected/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/FraudDetected/schema.json -------------------------------------------------------------------------------- /event-catalog/events/FraudNotDetected/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/FraudNotDetected/index.md -------------------------------------------------------------------------------- /event-catalog/events/FraudNotDetected/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/FraudNotDetected/schema.json -------------------------------------------------------------------------------- /event-catalog/events/S3ObjectCreated/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/S3ObjectCreated/index.md -------------------------------------------------------------------------------- /event-catalog/events/S3ObjectCreated/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/S3ObjectCreated/schema.json -------------------------------------------------------------------------------- /event-catalog/events/SettlementFinalized/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/SettlementFinalized/index.md -------------------------------------------------------------------------------- /event-catalog/events/SettlementFinalized/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/SettlementFinalized/schema.json -------------------------------------------------------------------------------- /event-catalog/events/VendorFinalized/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/VendorFinalized/index.md -------------------------------------------------------------------------------- /event-catalog/events/VendorFinalized/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/events/VendorFinalized/schema.json -------------------------------------------------------------------------------- /event-catalog/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/package-lock.json -------------------------------------------------------------------------------- /event-catalog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/package.json -------------------------------------------------------------------------------- /event-catalog/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/public/favicon.ico -------------------------------------------------------------------------------- /event-catalog/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/public/logo.svg -------------------------------------------------------------------------------- /event-catalog/public/opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/public/opengraph.png -------------------------------------------------------------------------------- /event-catalog/services/AWS S3 Event Notification/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/services/AWS S3 Event Notification/index.md -------------------------------------------------------------------------------- /event-catalog/services/Claims Service/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/services/Claims Service/index.md -------------------------------------------------------------------------------- /event-catalog/services/Customer Service/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/services/Customer Service/index.md -------------------------------------------------------------------------------- /event-catalog/services/Documents Service/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/services/Documents Service/index.md -------------------------------------------------------------------------------- /event-catalog/services/FNOL API/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/services/FNOL API/index.md -------------------------------------------------------------------------------- /event-catalog/services/Fraud Service/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/services/Fraud Service/index.md -------------------------------------------------------------------------------- /event-catalog/services/Notifications Service/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/services/Notifications Service/index.md -------------------------------------------------------------------------------- /event-catalog/services/Settlement Service/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/services/Settlement Service/index.md -------------------------------------------------------------------------------- /event-catalog/services/Signup API/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/services/Signup API/index.md -------------------------------------------------------------------------------- /event-catalog/services/Vendor Service/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/event-catalog/services/Vendor Service/index.md -------------------------------------------------------------------------------- /images/claim_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/claim_form.png -------------------------------------------------------------------------------- /images/claims_domain_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/claims_domain_architecture.png -------------------------------------------------------------------------------- /images/clear_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/clear_all.png -------------------------------------------------------------------------------- /images/clear_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/clear_events.png -------------------------------------------------------------------------------- /images/create_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/create_account.png -------------------------------------------------------------------------------- /images/customer_domain_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/customer_domain_architecture.png -------------------------------------------------------------------------------- /images/damage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/damage.png -------------------------------------------------------------------------------- /images/documents_domain_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/documents_domain_architecture.png -------------------------------------------------------------------------------- /images/email_verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/email_verify.png -------------------------------------------------------------------------------- /images/fraud_domain_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/fraud_domain_architecture.png -------------------------------------------------------------------------------- /images/landing_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/landing_page.png -------------------------------------------------------------------------------- /images/new_claim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/new_claim.png -------------------------------------------------------------------------------- /images/notifications_domain_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/notifications_domain_architecture.png -------------------------------------------------------------------------------- /images/overall_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/overall_architecture.png -------------------------------------------------------------------------------- /images/registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/registration.png -------------------------------------------------------------------------------- /images/select_dl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/select_dl.png -------------------------------------------------------------------------------- /images/settlement_domain_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/settlement_domain_architecture.png -------------------------------------------------------------------------------- /images/vendor_domain_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/images/vendor_domain_architecture.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/claims-processing-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/claims-processing-stack.ts -------------------------------------------------------------------------------- /lib/cleanup/app/handlers/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/cleanup/app/handlers/delete.js -------------------------------------------------------------------------------- /lib/cleanup/infra/cleanup-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/cleanup/infra/cleanup-service.ts -------------------------------------------------------------------------------- /lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/config.ts -------------------------------------------------------------------------------- /lib/observability/cw-dashboard/app/handlers/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/observability/cw-dashboard/app/handlers/create.js -------------------------------------------------------------------------------- /lib/observability/cw-dashboard/infra/ClaimsProcessingCWDashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/observability/cw-dashboard/infra/ClaimsProcessingCWDashboard.ts -------------------------------------------------------------------------------- /lib/observability/cw-dashboard/infra/createMetric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/observability/cw-dashboard/infra/createMetric.ts -------------------------------------------------------------------------------- /lib/services/claims/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/claims/README.md -------------------------------------------------------------------------------- /lib/services/claims/app/handlers/claimsProcessing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/claims/app/handlers/claimsProcessing.js -------------------------------------------------------------------------------- /lib/services/claims/app/handlers/fnol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/claims/app/handlers/fnol.js -------------------------------------------------------------------------------- /lib/services/claims/infra/claims-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/claims/infra/claims-events.ts -------------------------------------------------------------------------------- /lib/services/claims/infra/claims-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/claims/infra/claims-service.ts -------------------------------------------------------------------------------- /lib/services/claims/infra/step-functions/updateClaims.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/claims/infra/step-functions/updateClaims.ts -------------------------------------------------------------------------------- /lib/services/claims/infra/tests/claims-service.test.js: -------------------------------------------------------------------------------- 1 | // Infrastructure test 2 | -------------------------------------------------------------------------------- /lib/services/customer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/customer/README.md -------------------------------------------------------------------------------- /lib/services/customer/app/handlers/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/customer/app/handlers/get.js -------------------------------------------------------------------------------- /lib/services/customer/app/handlers/preSignedURLGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/customer/app/handlers/preSignedURLGenerator.js -------------------------------------------------------------------------------- /lib/services/customer/app/handlers/putPolicyRequests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/customer/app/handlers/putPolicyRequests.js -------------------------------------------------------------------------------- /lib/services/customer/app/handlers/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/customer/app/handlers/signup.js -------------------------------------------------------------------------------- /lib/services/customer/app/handlers/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/customer/app/handlers/update.js -------------------------------------------------------------------------------- /lib/services/customer/app/handlers/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/customer/app/handlers/validator.js -------------------------------------------------------------------------------- /lib/services/customer/infra/customer-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/customer/infra/customer-events.ts -------------------------------------------------------------------------------- /lib/services/customer/infra/customer-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/customer/infra/customer-service.ts -------------------------------------------------------------------------------- /lib/services/customer/infra/step-functions/createCustomer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/customer/infra/step-functions/createCustomer.ts -------------------------------------------------------------------------------- /lib/services/customer/infra/step-functions/updatePolicy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/customer/infra/step-functions/updatePolicy.ts -------------------------------------------------------------------------------- /lib/services/customer/infra/tests/customer-service.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/services/documents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/documents/README.md -------------------------------------------------------------------------------- /lib/services/documents/app/handlers/analyzeCarImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/documents/app/handlers/analyzeCarImage.js -------------------------------------------------------------------------------- /lib/services/documents/app/handlers/textractResponseTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/documents/app/handlers/textractResponseTransformer.js -------------------------------------------------------------------------------- /lib/services/documents/infra/documents-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/documents/infra/documents-events.ts -------------------------------------------------------------------------------- /lib/services/documents/infra/documents-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/documents/infra/documents-service.ts -------------------------------------------------------------------------------- /lib/services/documents/infra/tests/documents-service.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/services/fraud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/fraud/README.md -------------------------------------------------------------------------------- /lib/services/fraud/app/handlers/fraudDetection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/fraud/app/handlers/fraudDetection.js -------------------------------------------------------------------------------- /lib/services/fraud/infra/fraud-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/fraud/infra/fraud-events.ts -------------------------------------------------------------------------------- /lib/services/fraud/infra/fraud-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/fraud/infra/fraud-service.ts -------------------------------------------------------------------------------- /lib/services/fraud/infra/tests/fraud-service.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/services/notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/notifications/README.md -------------------------------------------------------------------------------- /lib/services/notifications/app/handlers/iot.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/notifications/app/handlers/iot.index.js -------------------------------------------------------------------------------- /lib/services/notifications/app/handlers/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/notifications/app/handlers/notifications.js -------------------------------------------------------------------------------- /lib/services/notifications/infra/notifications-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/notifications/infra/notifications-service.ts -------------------------------------------------------------------------------- /lib/services/notifications/infra/tests/notifications-service.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/services/settlement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/README.md -------------------------------------------------------------------------------- /lib/services/settlement/app/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /lib/services/settlement/app/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /lib/services/settlement/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/Dockerfile -------------------------------------------------------------------------------- /lib/services/settlement/app/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/mvnw -------------------------------------------------------------------------------- /lib/services/settlement/app/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/mvnw.cmd -------------------------------------------------------------------------------- /lib/services/settlement/app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/pom.xml -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/SettlementApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/SettlementApplication.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/config/SpringCloudConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/config/SpringCloudConfig.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/controllers/SettlementController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/controllers/SettlementController.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/model/SettlementRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/model/SettlementRequest.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/model/SettlementResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/model/SettlementResponse.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/model/input/generated/AWSEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/model/input/generated/AWSEvent.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/model/input/generated/AnalyzedFieldAndValues.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/model/input/generated/AnalyzedFieldAndValues.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/model/input/generated/Color.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/model/input/generated/Color.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/model/input/generated/Damage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/model/input/generated/Damage.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/model/input/generated/FraudNotDetected.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/model/input/generated/FraudNotDetected.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/model/input/generated/marshaller/Marshaller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/model/input/generated/marshaller/Marshaller.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/repository/SettlementRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/repository/SettlementRepository.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/services/SettlementService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/services/SettlementService.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/java/com/amazon/settlement/services/SubscriberService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/java/com/amazon/settlement/services/SubscriberService.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/main/resources/application.properties -------------------------------------------------------------------------------- /lib/services/settlement/app/src/test/java/com/amazon/settlement/services/SettlementServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/test/java/com/amazon/settlement/services/SettlementServiceTest.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/test/java/com/amazon/settlement/services/SubscriberServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/test/java/com/amazon/settlement/services/SubscriberServiceTest.java -------------------------------------------------------------------------------- /lib/services/settlement/app/src/test/resources/application-test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/test/resources/application-test.properties -------------------------------------------------------------------------------- /lib/services/settlement/app/src/test/resources/testdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/test/resources/testdata.json -------------------------------------------------------------------------------- /lib/services/settlement/app/src/test/resources/testreturndata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/app/src/test/resources/testreturndata.json -------------------------------------------------------------------------------- /lib/services/settlement/infra/settlement-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/settlement/infra/settlement-service.ts -------------------------------------------------------------------------------- /lib/services/vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/vendor/README.md -------------------------------------------------------------------------------- /lib/services/vendor/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/vendor/app/Dockerfile -------------------------------------------------------------------------------- /lib/services/vendor/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/vendor/app/index.js -------------------------------------------------------------------------------- /lib/services/vendor/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/vendor/app/package.json -------------------------------------------------------------------------------- /lib/services/vendor/infra/vendor-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/lib/services/vendor/infra/vendor-service.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/package.json -------------------------------------------------------------------------------- /react-claims/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/.gitignore -------------------------------------------------------------------------------- /react-claims/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/.vscode/settings.json -------------------------------------------------------------------------------- /react-claims/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/amplify/.config/project-config.json -------------------------------------------------------------------------------- /react-claims/amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/amplify/README.md -------------------------------------------------------------------------------- /react-claims/amplify/backend/auth/reactclaims6a6543fe/cli-inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/amplify/backend/auth/reactclaims6a6543fe/cli-inputs.json -------------------------------------------------------------------------------- /react-claims/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /react-claims/amplify/backend/custom/unAuthRolePolicy/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/amplify/backend/custom/unAuthRolePolicy/parameters.json -------------------------------------------------------------------------------- /react-claims/amplify/backend/custom/unAuthRolePolicy/unAuthRolePolicy-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/amplify/backend/custom/unAuthRolePolicy/unAuthRolePolicy-cloudformation-template.json -------------------------------------------------------------------------------- /react-claims/amplify/backend/hosting/amplifyhosting/amplifyhosting-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/amplify/backend/hosting/amplifyhosting/amplifyhosting-template.json -------------------------------------------------------------------------------- /react-claims/amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/amplify/backend/tags.json -------------------------------------------------------------------------------- /react-claims/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/amplify/cli.json -------------------------------------------------------------------------------- /react-claims/amplify/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/amplify/hooks/README.md -------------------------------------------------------------------------------- /react-claims/amplifyPublishIgnore.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /react-claims/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/package-lock.json -------------------------------------------------------------------------------- /react-claims/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/package.json -------------------------------------------------------------------------------- /react-claims/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/public/favicon.ico -------------------------------------------------------------------------------- /react-claims/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/public/index.html -------------------------------------------------------------------------------- /react-claims/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/public/logo192.png -------------------------------------------------------------------------------- /react-claims/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/public/logo512.png -------------------------------------------------------------------------------- /react-claims/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/public/manifest.json -------------------------------------------------------------------------------- /react-claims/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/public/robots.txt -------------------------------------------------------------------------------- /react-claims/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/App.css -------------------------------------------------------------------------------- /react-claims/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/App.js -------------------------------------------------------------------------------- /react-claims/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/App.test.js -------------------------------------------------------------------------------- /react-claims/src/Claim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/Claim.js -------------------------------------------------------------------------------- /react-claims/src/ClearData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/ClearData.js -------------------------------------------------------------------------------- /react-claims/src/DL/dl_AZ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/DL/dl_AZ.jpg -------------------------------------------------------------------------------- /react-claims/src/DL/dl_MA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/DL/dl_MA.jpg -------------------------------------------------------------------------------- /react-claims/src/DL/dl_OH.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/DL/dl_OH.jpg -------------------------------------------------------------------------------- /react-claims/src/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/Signup.js -------------------------------------------------------------------------------- /react-claims/src/Updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/Updates.js -------------------------------------------------------------------------------- /react-claims/src/UploadFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/UploadFile.js -------------------------------------------------------------------------------- /react-claims/src/Vehicles/damaged_car_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/Vehicles/damaged_car_1.jpeg -------------------------------------------------------------------------------- /react-claims/src/Vehicles/damaged_car_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/Vehicles/damaged_car_2.jpeg -------------------------------------------------------------------------------- /react-claims/src/Vehicles/green_car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/Vehicles/green_car.jpg -------------------------------------------------------------------------------- /react-claims/src/Vehicles/red_car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/Vehicles/red_car.jpg -------------------------------------------------------------------------------- /react-claims/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/index.css -------------------------------------------------------------------------------- /react-claims/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/index.js -------------------------------------------------------------------------------- /react-claims/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/logo.svg -------------------------------------------------------------------------------- /react-claims/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/reportWebVitals.js -------------------------------------------------------------------------------- /react-claims/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/setupTests.js -------------------------------------------------------------------------------- /react-claims/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/react-claims/src/utils.js -------------------------------------------------------------------------------- /target/npmlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/target/npmlist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/serverless-eda-insurance-claims-processing/HEAD/tsconfig.json --------------------------------------------------------------------------------