Mercurial > public > finance-parser
comparison template.yaml @ 6:d15ccf5f1373
fix bug clean_text
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Mon, 05 Jun 2023 17:12:18 +0100 |
parents | 2daf0dc08247 |
children | 7c5fb7573dd8 |
comparison
equal
deleted
inserted
replaced
5:2daf0dc08247 | 6:d15ccf5f1373 |
---|---|
1 AWSTemplateFormatVersion: '2010-09-09' | 1 AWSTemplateFormatVersion: '2010-09-09' |
2 Transform: AWS::Serverless-2016-10-31 | 2 Transform: AWS::Serverless-2016-10-31 |
3 Description: Serverless balance sheet analyzer using Textract and a serverless API | 3 Description: Serverless finance staments analyzer using Textract and a serverless API |
4 | 4 |
5 Conditions: | 5 Conditions: |
6 CreateProdResources: !Equals | 6 CreateProdResources: !Equals |
7 - !Ref AWS::AccountId | 7 - !Ref AWS::AccountId |
8 - 572540046516 # Dennis account ID (Production) | 8 - 572540046516 # Dennis account ID (Production) |
167 AttributeDefinitions: | 167 AttributeDefinitions: |
168 - AttributeName: pk | 168 - AttributeName: pk |
169 AttributeType: S | 169 AttributeType: S |
170 - AttributeName: sk | 170 - AttributeName: sk |
171 AttributeType: S | 171 AttributeType: S |
172 | |
173 Outputs: | |
174 GetReportEndpoint: | |
175 Description: "Endpoint to get a report" | |
176 Value: !Sub "https://${Api}.execute-api.${AWS::Region}.amazonaws.com/Prod/report" |