@cdklabs/cdk-appmod-catalog-blueprints 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +846 -273
- package/lib/document-processing/adapter/adapter.d.ts +47 -0
- package/lib/document-processing/adapter/adapter.js +5 -0
- package/lib/document-processing/adapter/index.d.ts +2 -0
- package/lib/document-processing/adapter/index.js +19 -0
- package/lib/document-processing/adapter/queued-s3-adapter.d.ts +66 -0
- package/lib/document-processing/adapter/queued-s3-adapter.js +230 -0
- package/lib/document-processing/agentic-document-processing.d.ts +22 -0
- package/lib/document-processing/agentic-document-processing.js +12 -14
- package/lib/document-processing/base-document-processing.d.ts +8 -44
- package/lib/document-processing/base-document-processing.js +23 -189
- package/lib/document-processing/bedrock-document-processing.js +4 -13
- package/lib/document-processing/default-document-processing-config.d.ts +3 -0
- package/lib/document-processing/default-document-processing-config.js +14 -0
- package/lib/document-processing/index.d.ts +2 -0
- package/lib/document-processing/index.js +3 -1
- package/lib/document-processing/resources/default-bedrock-invoke/index.py +36 -24
- package/lib/document-processing/resources/default-sqs-consumer/index.py +10 -5
- package/lib/document-processing/resources/default-strands-agent/index.py +8 -5
- package/lib/document-processing/tests/agentic-document-processing-nag.test.js +6 -2
- package/lib/document-processing/tests/agentic-document-processing.test.js +5 -19
- package/lib/document-processing/tests/bedrock-document-processing-nag.test.js +6 -2
- package/lib/framework/custom-resource/default-runtimes.d.ts +1 -0
- package/lib/framework/custom-resource/default-runtimes.js +3 -2
- package/lib/framework/foundation/access-log.js +1 -1
- package/lib/framework/foundation/eventbridge-broker.js +1 -1
- package/lib/framework/foundation/network.js +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utilities/data-loader.js +4 -3
- package/lib/utilities/lambda-iam-utils.d.ts +8 -0
- package/lib/utilities/lambda-iam-utils.js +7 -5
- package/lib/utilities/observability/cloudfront-distribution-observability-property-injector.js +1 -1
- package/lib/utilities/observability/default-observability-config.d.ts +9 -0
- package/lib/utilities/observability/default-observability-config.js +20 -0
- package/lib/utilities/observability/index.d.ts +1 -0
- package/lib/utilities/observability/index.js +2 -1
- package/lib/utilities/observability/lambda-observability-property-injector.js +5 -4
- package/lib/utilities/observability/powertools-config.js +1 -1
- package/lib/utilities/observability/state-machine-observability-property-injector.js +1 -1
- package/lib/webapp/frontend-construct.js +1 -1
- package/package.json +14 -18
package/.jsii
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
]
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@aws-cdk/aws-lambda-python-alpha": "2.
|
|
12
|
-
"aws-cdk-lib": "^2.
|
|
11
|
+
"@aws-cdk/aws-lambda-python-alpha": "^2.218.0-alpha.0",
|
|
12
|
+
"aws-cdk-lib": "^2.218.0",
|
|
13
13
|
"constructs": "^10.0.5"
|
|
14
14
|
},
|
|
15
15
|
"dependencyClosure": {
|
|
@@ -635,6 +635,19 @@
|
|
|
635
635
|
}
|
|
636
636
|
}
|
|
637
637
|
},
|
|
638
|
+
"aws-cdk-lib.aws_bedrockagentcore": {
|
|
639
|
+
"targets": {
|
|
640
|
+
"dotnet": {
|
|
641
|
+
"package": "Amazon.CDK.AWS.BedrockAgentCore"
|
|
642
|
+
},
|
|
643
|
+
"java": {
|
|
644
|
+
"package": "software.amazon.awscdk.services.bedrockagentcore"
|
|
645
|
+
},
|
|
646
|
+
"python": {
|
|
647
|
+
"module": "aws_cdk.aws_bedrockagentcore"
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
},
|
|
638
651
|
"aws-cdk-lib.aws_billingconductor": {
|
|
639
652
|
"targets": {
|
|
640
653
|
"dotnet": {
|
|
@@ -3561,6 +3574,19 @@
|
|
|
3561
3574
|
}
|
|
3562
3575
|
}
|
|
3563
3576
|
},
|
|
3577
|
+
"aws-cdk-lib.aws_smsvoice": {
|
|
3578
|
+
"targets": {
|
|
3579
|
+
"dotnet": {
|
|
3580
|
+
"package": "Amazon.CDK.AWS.SMSVOICE"
|
|
3581
|
+
},
|
|
3582
|
+
"java": {
|
|
3583
|
+
"package": "software.amazon.awscdk.services.smsvoice"
|
|
3584
|
+
},
|
|
3585
|
+
"python": {
|
|
3586
|
+
"module": "aws_cdk.aws_smsvoice"
|
|
3587
|
+
}
|
|
3588
|
+
}
|
|
3589
|
+
},
|
|
3564
3590
|
"aws-cdk-lib.aws_sns": {
|
|
3565
3591
|
"targets": {
|
|
3566
3592
|
"dotnet": {
|
|
@@ -4087,8 +4113,8 @@
|
|
|
4087
4113
|
"docs": {
|
|
4088
4114
|
"stability": "experimental"
|
|
4089
4115
|
},
|
|
4090
|
-
"homepage": "
|
|
4091
|
-
"jsiiVersion": "5.9.
|
|
4116
|
+
"homepage": "https://github.com/cdklabs/cdk-appmod-catalog-blueprints.git",
|
|
4117
|
+
"jsiiVersion": "5.9.7 (build 1693b5a)",
|
|
4092
4118
|
"keywords": [
|
|
4093
4119
|
"cdk"
|
|
4094
4120
|
],
|
|
@@ -4107,7 +4133,7 @@
|
|
|
4107
4133
|
},
|
|
4108
4134
|
"repository": {
|
|
4109
4135
|
"type": "git",
|
|
4110
|
-
"url": "
|
|
4136
|
+
"url": "https://github.com/cdklabs/cdk-appmod-catalog-blueprints.git"
|
|
4111
4137
|
},
|
|
4112
4138
|
"schema": "jsii/0.10.0",
|
|
4113
4139
|
"targets": {
|
|
@@ -4115,9 +4141,6 @@
|
|
|
4115
4141
|
"namespace": "CdklabsAppmodCatalogBlueprints",
|
|
4116
4142
|
"packageId": "CdklabsAppmodCatalogBlueprints"
|
|
4117
4143
|
},
|
|
4118
|
-
"go": {
|
|
4119
|
-
"moduleName": "github.com/cdklabs/appmod-catalog-blueprints-go"
|
|
4120
|
-
},
|
|
4121
4144
|
"java": {
|
|
4122
4145
|
"maven": {
|
|
4123
4146
|
"artifactId": "appmod-catalog-blueprints",
|
|
@@ -4504,12 +4527,13 @@
|
|
|
4504
4527
|
{
|
|
4505
4528
|
"abstract": true,
|
|
4506
4529
|
"docs": {
|
|
4507
|
-
"stability": "experimental"
|
|
4530
|
+
"stability": "experimental",
|
|
4531
|
+
"summary": "System prompt for the agent."
|
|
4508
4532
|
},
|
|
4509
4533
|
"immutable": true,
|
|
4510
4534
|
"locationInModule": {
|
|
4511
4535
|
"filename": "use-cases/document-processing/agentic-document-processing.ts",
|
|
4512
|
-
"line":
|
|
4536
|
+
"line": 27
|
|
4513
4537
|
},
|
|
4514
4538
|
"name": "agentSystemPrompt",
|
|
4515
4539
|
"optional": true,
|
|
@@ -4520,12 +4544,13 @@
|
|
|
4520
4544
|
{
|
|
4521
4545
|
"abstract": true,
|
|
4522
4546
|
"docs": {
|
|
4523
|
-
"stability": "experimental"
|
|
4547
|
+
"stability": "experimental",
|
|
4548
|
+
"summary": "If there are python dependencies that are needed by the provided tools, provide the Lambda Layers with the dependencies."
|
|
4524
4549
|
},
|
|
4525
4550
|
"immutable": true,
|
|
4526
4551
|
"locationInModule": {
|
|
4527
4552
|
"filename": "use-cases/document-processing/agentic-document-processing.ts",
|
|
4528
|
-
"line":
|
|
4553
|
+
"line": 40
|
|
4529
4554
|
},
|
|
4530
4555
|
"name": "lambdaLayers",
|
|
4531
4556
|
"optional": true,
|
|
@@ -4541,12 +4566,32 @@
|
|
|
4541
4566
|
{
|
|
4542
4567
|
"abstract": true,
|
|
4543
4568
|
"docs": {
|
|
4544
|
-
"
|
|
4569
|
+
"default": "No extra IAM permissions would be automatically\nassigned to the processing agent.",
|
|
4570
|
+
"stability": "experimental",
|
|
4571
|
+
"summary": "Bucket where the tools are located in Primarily use to grant read permission to the processing agent to access the tools."
|
|
4545
4572
|
},
|
|
4546
4573
|
"immutable": true,
|
|
4547
4574
|
"locationInModule": {
|
|
4548
4575
|
"filename": "use-cases/document-processing/agentic-document-processing.ts",
|
|
4549
|
-
"line":
|
|
4576
|
+
"line": 22
|
|
4577
|
+
},
|
|
4578
|
+
"name": "toolsBucket",
|
|
4579
|
+
"optional": true,
|
|
4580
|
+
"type": {
|
|
4581
|
+
"fqn": "aws-cdk-lib.aws_s3.Bucket"
|
|
4582
|
+
}
|
|
4583
|
+
},
|
|
4584
|
+
{
|
|
4585
|
+
"abstract": true,
|
|
4586
|
+
"docs": {
|
|
4587
|
+
"remarks": "The agent would dynamically load the tools",
|
|
4588
|
+
"stability": "experimental",
|
|
4589
|
+
"summary": "S3 path where the tools are located."
|
|
4590
|
+
},
|
|
4591
|
+
"immutable": true,
|
|
4592
|
+
"locationInModule": {
|
|
4593
|
+
"filename": "use-cases/document-processing/agentic-document-processing.ts",
|
|
4594
|
+
"line": 33
|
|
4550
4595
|
},
|
|
4551
4596
|
"name": "toolsLocation",
|
|
4552
4597
|
"optional": true,
|
|
@@ -4575,7 +4620,7 @@
|
|
|
4575
4620
|
},
|
|
4576
4621
|
"locationInModule": {
|
|
4577
4622
|
"filename": "use-cases/document-processing/agentic-document-processing.ts",
|
|
4578
|
-
"line":
|
|
4623
|
+
"line": 48
|
|
4579
4624
|
},
|
|
4580
4625
|
"parameters": [
|
|
4581
4626
|
{
|
|
@@ -4604,7 +4649,7 @@
|
|
|
4604
4649
|
"kind": "class",
|
|
4605
4650
|
"locationInModule": {
|
|
4606
4651
|
"filename": "use-cases/document-processing/agentic-document-processing.ts",
|
|
4607
|
-
"line":
|
|
4652
|
+
"line": 47
|
|
4608
4653
|
},
|
|
4609
4654
|
"methods": [
|
|
4610
4655
|
{
|
|
@@ -4615,7 +4660,7 @@
|
|
|
4615
4660
|
},
|
|
4616
4661
|
"locationInModule": {
|
|
4617
4662
|
"filename": "use-cases/document-processing/agentic-document-processing.ts",
|
|
4618
|
-
"line":
|
|
4663
|
+
"line": 52
|
|
4619
4664
|
},
|
|
4620
4665
|
"name": "processingStep",
|
|
4621
4666
|
"overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BedrockDocumentProcessing",
|
|
@@ -4655,7 +4700,7 @@
|
|
|
4655
4700
|
"kind": "interface",
|
|
4656
4701
|
"locationInModule": {
|
|
4657
4702
|
"filename": "use-cases/document-processing/agentic-document-processing.ts",
|
|
4658
|
-
"line":
|
|
4703
|
+
"line": 43
|
|
4659
4704
|
},
|
|
4660
4705
|
"name": "AgenticDocumentProcessingProps",
|
|
4661
4706
|
"properties": [
|
|
@@ -4667,7 +4712,7 @@
|
|
|
4667
4712
|
"immutable": true,
|
|
4668
4713
|
"locationInModule": {
|
|
4669
4714
|
"filename": "use-cases/document-processing/agentic-document-processing.ts",
|
|
4670
|
-
"line":
|
|
4715
|
+
"line": 44
|
|
4671
4716
|
},
|
|
4672
4717
|
"name": "processingAgentParameters",
|
|
4673
4718
|
"optional": true,
|
|
@@ -4696,7 +4741,7 @@
|
|
|
4696
4741
|
},
|
|
4697
4742
|
"locationInModule": {
|
|
4698
4743
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
4699
|
-
"line":
|
|
4744
|
+
"line": 130
|
|
4700
4745
|
},
|
|
4701
4746
|
"parameters": [
|
|
4702
4747
|
{
|
|
@@ -4735,7 +4780,7 @@
|
|
|
4735
4780
|
"kind": "class",
|
|
4736
4781
|
"locationInModule": {
|
|
4737
4782
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
4738
|
-
"line":
|
|
4783
|
+
"line": 104
|
|
4739
4784
|
},
|
|
4740
4785
|
"methods": [
|
|
4741
4786
|
{
|
|
@@ -4748,7 +4793,7 @@
|
|
|
4748
4793
|
},
|
|
4749
4794
|
"locationInModule": {
|
|
4750
4795
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
4751
|
-
"line":
|
|
4796
|
+
"line": 475
|
|
4752
4797
|
},
|
|
4753
4798
|
"name": "classificationStep",
|
|
4754
4799
|
"protected": true,
|
|
@@ -4780,7 +4825,7 @@
|
|
|
4780
4825
|
},
|
|
4781
4826
|
"locationInModule": {
|
|
4782
4827
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
4783
|
-
"line":
|
|
4828
|
+
"line": 495
|
|
4784
4829
|
},
|
|
4785
4830
|
"name": "enrichmentStep",
|
|
4786
4831
|
"protected": true,
|
|
@@ -4809,7 +4854,7 @@
|
|
|
4809
4854
|
},
|
|
4810
4855
|
"locationInModule": {
|
|
4811
4856
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
4812
|
-
"line":
|
|
4857
|
+
"line": 196
|
|
4813
4858
|
},
|
|
4814
4859
|
"name": "handleStateMachineCreation",
|
|
4815
4860
|
"parameters": [
|
|
@@ -4833,26 +4878,7 @@
|
|
|
4833
4878
|
},
|
|
4834
4879
|
"locationInModule": {
|
|
4835
4880
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
4836
|
-
"line":
|
|
4837
|
-
},
|
|
4838
|
-
"name": "handleWorkflowTrigger",
|
|
4839
|
-
"parameters": [
|
|
4840
|
-
{
|
|
4841
|
-
"name": "stateMachine",
|
|
4842
|
-
"type": {
|
|
4843
|
-
"fqn": "aws-cdk-lib.aws_stepfunctions.StateMachine"
|
|
4844
|
-
}
|
|
4845
|
-
}
|
|
4846
|
-
],
|
|
4847
|
-
"protected": true
|
|
4848
|
-
},
|
|
4849
|
-
{
|
|
4850
|
-
"docs": {
|
|
4851
|
-
"stability": "experimental"
|
|
4852
|
-
},
|
|
4853
|
-
"locationInModule": {
|
|
4854
|
-
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
4855
|
-
"line": 665
|
|
4881
|
+
"line": 463
|
|
4856
4882
|
},
|
|
4857
4883
|
"name": "metrics",
|
|
4858
4884
|
"overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IObservable",
|
|
@@ -4877,7 +4903,7 @@
|
|
|
4877
4903
|
},
|
|
4878
4904
|
"locationInModule": {
|
|
4879
4905
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
4880
|
-
"line":
|
|
4906
|
+
"line": 505
|
|
4881
4907
|
},
|
|
4882
4908
|
"name": "postProcessingStep",
|
|
4883
4909
|
"protected": true,
|
|
@@ -4910,7 +4936,7 @@
|
|
|
4910
4936
|
},
|
|
4911
4937
|
"locationInModule": {
|
|
4912
4938
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
4913
|
-
"line":
|
|
4939
|
+
"line": 485
|
|
4914
4940
|
},
|
|
4915
4941
|
"name": "processingStep",
|
|
4916
4942
|
"protected": true,
|
|
@@ -4938,61 +4964,46 @@
|
|
|
4938
4964
|
{
|
|
4939
4965
|
"docs": {
|
|
4940
4966
|
"stability": "experimental",
|
|
4941
|
-
"summary": "
|
|
4942
|
-
},
|
|
4943
|
-
"immutable": true,
|
|
4944
|
-
"locationInModule": {
|
|
4945
|
-
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
4946
|
-
"line": 144
|
|
4947
|
-
},
|
|
4948
|
-
"name": "bucket",
|
|
4949
|
-
"type": {
|
|
4950
|
-
"fqn": "aws-cdk-lib.aws_s3.Bucket"
|
|
4951
|
-
}
|
|
4952
|
-
},
|
|
4953
|
-
{
|
|
4954
|
-
"docs": {
|
|
4955
|
-
"stability": "experimental",
|
|
4956
|
-
"summary": "Dead letter queue."
|
|
4967
|
+
"summary": "DynamoDB table for storing document processing metadata and workflow state."
|
|
4957
4968
|
},
|
|
4958
4969
|
"immutable": true,
|
|
4959
4970
|
"locationInModule": {
|
|
4960
4971
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
4961
|
-
"line":
|
|
4972
|
+
"line": 112
|
|
4962
4973
|
},
|
|
4963
|
-
"name": "
|
|
4974
|
+
"name": "documentProcessingTable",
|
|
4964
4975
|
"type": {
|
|
4965
|
-
"fqn": "aws-cdk-lib.
|
|
4976
|
+
"fqn": "aws-cdk-lib.aws_dynamodb.Table"
|
|
4966
4977
|
}
|
|
4967
4978
|
},
|
|
4968
4979
|
{
|
|
4969
4980
|
"docs": {
|
|
4970
4981
|
"stability": "experimental",
|
|
4971
|
-
"summary": "
|
|
4982
|
+
"summary": "KMS key."
|
|
4972
4983
|
},
|
|
4973
4984
|
"immutable": true,
|
|
4974
4985
|
"locationInModule": {
|
|
4975
4986
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
4976
|
-
"line":
|
|
4987
|
+
"line": 116
|
|
4977
4988
|
},
|
|
4978
|
-
"name": "
|
|
4989
|
+
"name": "encryptionKey",
|
|
4979
4990
|
"type": {
|
|
4980
|
-
"fqn": "aws-cdk-lib.
|
|
4991
|
+
"fqn": "aws-cdk-lib.aws_kms.Key"
|
|
4981
4992
|
}
|
|
4982
4993
|
},
|
|
4983
4994
|
{
|
|
4984
4995
|
"docs": {
|
|
4985
4996
|
"stability": "experimental",
|
|
4986
|
-
"summary": "
|
|
4997
|
+
"summary": "Ingress adapter, responsible for triggering workflow."
|
|
4987
4998
|
},
|
|
4988
4999
|
"immutable": true,
|
|
4989
5000
|
"locationInModule": {
|
|
4990
5001
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
4991
|
-
"line":
|
|
5002
|
+
"line": 118
|
|
4992
5003
|
},
|
|
4993
|
-
"name": "
|
|
5004
|
+
"name": "ingressAdapter",
|
|
4994
5005
|
"type": {
|
|
4995
|
-
"fqn": "
|
|
5006
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.IAdapter"
|
|
4996
5007
|
}
|
|
4997
5008
|
},
|
|
4998
5009
|
{
|
|
@@ -5003,7 +5014,7 @@
|
|
|
5003
5014
|
"immutable": true,
|
|
5004
5015
|
"locationInModule": {
|
|
5005
5016
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5006
|
-
"line":
|
|
5017
|
+
"line": 110
|
|
5007
5018
|
},
|
|
5008
5019
|
"name": "logGroupDataProtection",
|
|
5009
5020
|
"overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IObservable",
|
|
@@ -5019,7 +5030,7 @@
|
|
|
5019
5030
|
"immutable": true,
|
|
5020
5031
|
"locationInModule": {
|
|
5021
5032
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5022
|
-
"line":
|
|
5033
|
+
"line": 108
|
|
5023
5034
|
},
|
|
5024
5035
|
"name": "metricNamespace",
|
|
5025
5036
|
"overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IObservable",
|
|
@@ -5036,44 +5047,13 @@
|
|
|
5036
5047
|
"immutable": true,
|
|
5037
5048
|
"locationInModule": {
|
|
5038
5049
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5039
|
-
"line":
|
|
5050
|
+
"line": 106
|
|
5040
5051
|
},
|
|
5041
5052
|
"name": "metricServiceName",
|
|
5042
5053
|
"overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IObservable",
|
|
5043
5054
|
"type": {
|
|
5044
5055
|
"primitive": "string"
|
|
5045
5056
|
}
|
|
5046
|
-
},
|
|
5047
|
-
{
|
|
5048
|
-
"docs": {
|
|
5049
|
-
"stability": "experimental",
|
|
5050
|
-
"summary": "SQS queue for reliable message processing with dead letter queue support."
|
|
5051
|
-
},
|
|
5052
|
-
"immutable": true,
|
|
5053
|
-
"locationInModule": {
|
|
5054
|
-
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5055
|
-
"line": 146
|
|
5056
|
-
},
|
|
5057
|
-
"name": "queue",
|
|
5058
|
-
"type": {
|
|
5059
|
-
"fqn": "aws-cdk-lib.aws_sqs.Queue"
|
|
5060
|
-
}
|
|
5061
|
-
},
|
|
5062
|
-
{
|
|
5063
|
-
"docs": {
|
|
5064
|
-
"stability": "experimental",
|
|
5065
|
-
"summary": "Encryption key used by the DocumentProcessingBucket."
|
|
5066
|
-
},
|
|
5067
|
-
"immutable": true,
|
|
5068
|
-
"locationInModule": {
|
|
5069
|
-
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5070
|
-
"line": 156
|
|
5071
|
-
},
|
|
5072
|
-
"name": "bucketEncryptionKey",
|
|
5073
|
-
"optional": true,
|
|
5074
|
-
"type": {
|
|
5075
|
-
"fqn": "aws-cdk-lib.aws_kms.IKey"
|
|
5076
|
-
}
|
|
5077
5057
|
}
|
|
5078
5058
|
],
|
|
5079
5059
|
"symbolId": "use-cases/document-processing/base-document-processing:BaseDocumentProcessing"
|
|
@@ -5092,46 +5072,10 @@
|
|
|
5092
5072
|
"kind": "interface",
|
|
5093
5073
|
"locationInModule": {
|
|
5094
5074
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5095
|
-
"line":
|
|
5075
|
+
"line": 26
|
|
5096
5076
|
},
|
|
5097
5077
|
"name": "BaseDocumentProcessingProps",
|
|
5098
5078
|
"properties": [
|
|
5099
|
-
{
|
|
5100
|
-
"abstract": true,
|
|
5101
|
-
"docs": {
|
|
5102
|
-
"remarks": "If not provided, a new bucket will be created with auto-delete enabled based on removalPolicy.",
|
|
5103
|
-
"stability": "experimental",
|
|
5104
|
-
"summary": "S3 bucket for document storage with organized prefixes (raw/, processed/, failed/)."
|
|
5105
|
-
},
|
|
5106
|
-
"immutable": true,
|
|
5107
|
-
"locationInModule": {
|
|
5108
|
-
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5109
|
-
"line": 36
|
|
5110
|
-
},
|
|
5111
|
-
"name": "bucket",
|
|
5112
|
-
"optional": true,
|
|
5113
|
-
"type": {
|
|
5114
|
-
"fqn": "aws-cdk-lib.aws_s3.Bucket"
|
|
5115
|
-
}
|
|
5116
|
-
},
|
|
5117
|
-
{
|
|
5118
|
-
"abstract": true,
|
|
5119
|
-
"docs": {
|
|
5120
|
-
"default": "5",
|
|
5121
|
-
"stability": "experimental",
|
|
5122
|
-
"summary": "The number of times a message can be unsuccessfully dequeued before being moved to the dead-letter queue."
|
|
5123
|
-
},
|
|
5124
|
-
"immutable": true,
|
|
5125
|
-
"locationInModule": {
|
|
5126
|
-
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5127
|
-
"line": 54
|
|
5128
|
-
},
|
|
5129
|
-
"name": "dlqMaxReceiveCount",
|
|
5130
|
-
"optional": true,
|
|
5131
|
-
"type": {
|
|
5132
|
-
"primitive": "number"
|
|
5133
|
-
}
|
|
5134
|
-
},
|
|
5135
5079
|
{
|
|
5136
5080
|
"abstract": true,
|
|
5137
5081
|
"docs": {
|
|
@@ -5142,7 +5086,7 @@
|
|
|
5142
5086
|
"immutable": true,
|
|
5143
5087
|
"locationInModule": {
|
|
5144
5088
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5145
|
-
"line":
|
|
5089
|
+
"line": 39
|
|
5146
5090
|
},
|
|
5147
5091
|
"name": "documentProcessingTable",
|
|
5148
5092
|
"optional": true,
|
|
@@ -5160,7 +5104,7 @@
|
|
|
5160
5104
|
"immutable": true,
|
|
5161
5105
|
"locationInModule": {
|
|
5162
5106
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5163
|
-
"line":
|
|
5107
|
+
"line": 61
|
|
5164
5108
|
},
|
|
5165
5109
|
"name": "enableObservability",
|
|
5166
5110
|
"optional": true,
|
|
@@ -5178,7 +5122,7 @@
|
|
|
5178
5122
|
"immutable": true,
|
|
5179
5123
|
"locationInModule": {
|
|
5180
5124
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5181
|
-
"line":
|
|
5125
|
+
"line": 73
|
|
5182
5126
|
},
|
|
5183
5127
|
"name": "encryptionKey",
|
|
5184
5128
|
"optional": true,
|
|
@@ -5196,7 +5140,7 @@
|
|
|
5196
5140
|
"immutable": true,
|
|
5197
5141
|
"locationInModule": {
|
|
5198
5142
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5199
|
-
"line":
|
|
5143
|
+
"line": 55
|
|
5200
5144
|
},
|
|
5201
5145
|
"name": "eventbridgeBroker",
|
|
5202
5146
|
"optional": true,
|
|
@@ -5207,38 +5151,37 @@
|
|
|
5207
5151
|
{
|
|
5208
5152
|
"abstract": true,
|
|
5209
5153
|
"docs": {
|
|
5210
|
-
"default": "
|
|
5154
|
+
"default": "QueuedS3Adapter",
|
|
5211
5155
|
"stability": "experimental",
|
|
5212
|
-
"summary": "
|
|
5156
|
+
"summary": "Adapter that defines how the document processing workflow is triggered."
|
|
5213
5157
|
},
|
|
5214
5158
|
"immutable": true,
|
|
5215
5159
|
"locationInModule": {
|
|
5216
5160
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5217
|
-
"line":
|
|
5161
|
+
"line": 33
|
|
5218
5162
|
},
|
|
5219
|
-
"name": "
|
|
5163
|
+
"name": "ingressAdapter",
|
|
5220
5164
|
"optional": true,
|
|
5221
5165
|
"type": {
|
|
5222
|
-
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.
|
|
5166
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.IAdapter"
|
|
5223
5167
|
}
|
|
5224
5168
|
},
|
|
5225
5169
|
{
|
|
5226
5170
|
"abstract": true,
|
|
5227
5171
|
"docs": {
|
|
5228
|
-
"default": "
|
|
5229
|
-
"remarks": "Should be longer than expected processing time to prevent duplicate processing.",
|
|
5172
|
+
"default": "resources will run outside of a VPC",
|
|
5230
5173
|
"stability": "experimental",
|
|
5231
|
-
"summary": "
|
|
5174
|
+
"summary": "Resources that can run inside a VPC will follow the provided network configuration."
|
|
5232
5175
|
},
|
|
5233
5176
|
"immutable": true,
|
|
5234
5177
|
"locationInModule": {
|
|
5235
5178
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5236
|
-
"line":
|
|
5179
|
+
"line": 67
|
|
5237
5180
|
},
|
|
5238
|
-
"name": "
|
|
5181
|
+
"name": "network",
|
|
5239
5182
|
"optional": true,
|
|
5240
5183
|
"type": {
|
|
5241
|
-
"fqn": "
|
|
5184
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.Network"
|
|
5242
5185
|
}
|
|
5243
5186
|
},
|
|
5244
5187
|
{
|
|
@@ -5251,7 +5194,7 @@
|
|
|
5251
5194
|
"immutable": true,
|
|
5252
5195
|
"locationInModule": {
|
|
5253
5196
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5254
|
-
"line":
|
|
5197
|
+
"line": 50
|
|
5255
5198
|
},
|
|
5256
5199
|
"name": "removalPolicy",
|
|
5257
5200
|
"optional": true,
|
|
@@ -5269,7 +5212,7 @@
|
|
|
5269
5212
|
"immutable": true,
|
|
5270
5213
|
"locationInModule": {
|
|
5271
5214
|
"filename": "use-cases/document-processing/base-document-processing.ts",
|
|
5272
|
-
"line":
|
|
5215
|
+
"line": 45
|
|
5273
5216
|
},
|
|
5274
5217
|
"name": "workflowTimeout",
|
|
5275
5218
|
"optional": true,
|
|
@@ -5409,7 +5352,7 @@
|
|
|
5409
5352
|
},
|
|
5410
5353
|
"locationInModule": {
|
|
5411
5354
|
"filename": "use-cases/document-processing/bedrock-document-processing.ts",
|
|
5412
|
-
"line":
|
|
5355
|
+
"line": 346
|
|
5413
5356
|
},
|
|
5414
5357
|
"name": "enrichmentStep",
|
|
5415
5358
|
"overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessing",
|
|
@@ -5439,7 +5382,7 @@
|
|
|
5439
5382
|
},
|
|
5440
5383
|
"locationInModule": {
|
|
5441
5384
|
"filename": "use-cases/document-processing/bedrock-document-processing.ts",
|
|
5442
|
-
"line":
|
|
5385
|
+
"line": 312
|
|
5443
5386
|
},
|
|
5444
5387
|
"name": "generateLambdaRoleForBedrock",
|
|
5445
5388
|
"parameters": [
|
|
@@ -5472,7 +5415,7 @@
|
|
|
5472
5415
|
},
|
|
5473
5416
|
"locationInModule": {
|
|
5474
5417
|
"filename": "use-cases/document-processing/bedrock-document-processing.ts",
|
|
5475
|
-
"line":
|
|
5418
|
+
"line": 366
|
|
5476
5419
|
},
|
|
5477
5420
|
"name": "postProcessingStep",
|
|
5478
5421
|
"overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessing",
|
|
@@ -5505,7 +5448,7 @@
|
|
|
5505
5448
|
},
|
|
5506
5449
|
"locationInModule": {
|
|
5507
5450
|
"filename": "use-cases/document-processing/bedrock-document-processing.ts",
|
|
5508
|
-
"line":
|
|
5451
|
+
"line": 257
|
|
5509
5452
|
},
|
|
5510
5453
|
"name": "processingStep",
|
|
5511
5454
|
"overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessing",
|
|
@@ -5996,7 +5939,7 @@
|
|
|
5996
5939
|
},
|
|
5997
5940
|
"locationInModule": {
|
|
5998
5941
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
5999
|
-
"line":
|
|
5942
|
+
"line": 124
|
|
6000
5943
|
},
|
|
6001
5944
|
"parameters": [
|
|
6002
5945
|
{
|
|
@@ -6022,7 +5965,7 @@
|
|
|
6022
5965
|
"kind": "class",
|
|
6023
5966
|
"locationInModule": {
|
|
6024
5967
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6025
|
-
"line":
|
|
5968
|
+
"line": 108
|
|
6026
5969
|
},
|
|
6027
5970
|
"methods": [
|
|
6028
5971
|
{
|
|
@@ -6032,7 +5975,7 @@
|
|
|
6032
5975
|
},
|
|
6033
5976
|
"locationInModule": {
|
|
6034
5977
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6035
|
-
"line":
|
|
5978
|
+
"line": 159
|
|
6036
5979
|
},
|
|
6037
5980
|
"name": "grantExecutionTriggerPermissions",
|
|
6038
5981
|
"parameters": [
|
|
@@ -6058,7 +6001,7 @@
|
|
|
6058
6001
|
"immutable": true,
|
|
6059
6002
|
"locationInModule": {
|
|
6060
6003
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6061
|
-
"line":
|
|
6004
|
+
"line": 110
|
|
6062
6005
|
},
|
|
6063
6006
|
"name": "bucket",
|
|
6064
6007
|
"type": {
|
|
@@ -6073,7 +6016,7 @@
|
|
|
6073
6016
|
"immutable": true,
|
|
6074
6017
|
"locationInModule": {
|
|
6075
6018
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6076
|
-
"line":
|
|
6019
|
+
"line": 118
|
|
6077
6020
|
},
|
|
6078
6021
|
"name": "customResourceProvider",
|
|
6079
6022
|
"type": {
|
|
@@ -6088,7 +6031,7 @@
|
|
|
6088
6031
|
"immutable": true,
|
|
6089
6032
|
"locationInModule": {
|
|
6090
6033
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6091
|
-
"line":
|
|
6034
|
+
"line": 120
|
|
6092
6035
|
},
|
|
6093
6036
|
"name": "executionTrigger",
|
|
6094
6037
|
"type": {
|
|
@@ -6103,7 +6046,7 @@
|
|
|
6103
6046
|
"immutable": true,
|
|
6104
6047
|
"locationInModule": {
|
|
6105
6048
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6106
|
-
"line":
|
|
6049
|
+
"line": 114
|
|
6107
6050
|
},
|
|
6108
6051
|
"name": "processorFunction",
|
|
6109
6052
|
"type": {
|
|
@@ -6118,7 +6061,7 @@
|
|
|
6118
6061
|
"immutable": true,
|
|
6119
6062
|
"locationInModule": {
|
|
6120
6063
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6121
|
-
"line":
|
|
6064
|
+
"line": 112
|
|
6122
6065
|
},
|
|
6123
6066
|
"name": "stateMachine",
|
|
6124
6067
|
"type": {
|
|
@@ -6132,7 +6075,7 @@
|
|
|
6132
6075
|
},
|
|
6133
6076
|
"locationInModule": {
|
|
6134
6077
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6135
|
-
"line":
|
|
6078
|
+
"line": 116
|
|
6136
6079
|
},
|
|
6137
6080
|
"name": "bucketDeployment",
|
|
6138
6081
|
"optional": true,
|
|
@@ -6154,7 +6097,7 @@
|
|
|
6154
6097
|
"kind": "interface",
|
|
6155
6098
|
"locationInModule": {
|
|
6156
6099
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6157
|
-
"line":
|
|
6100
|
+
"line": 77
|
|
6158
6101
|
},
|
|
6159
6102
|
"name": "DataLoaderProps",
|
|
6160
6103
|
"properties": [
|
|
@@ -6167,7 +6110,7 @@
|
|
|
6167
6110
|
"immutable": true,
|
|
6168
6111
|
"locationInModule": {
|
|
6169
6112
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6170
|
-
"line":
|
|
6113
|
+
"line": 79
|
|
6171
6114
|
},
|
|
6172
6115
|
"name": "databaseConfig",
|
|
6173
6116
|
"type": {
|
|
@@ -6183,7 +6126,7 @@
|
|
|
6183
6126
|
"immutable": true,
|
|
6184
6127
|
"locationInModule": {
|
|
6185
6128
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6186
|
-
"line":
|
|
6129
|
+
"line": 81
|
|
6187
6130
|
},
|
|
6188
6131
|
"name": "fileInputs",
|
|
6189
6132
|
"type": {
|
|
@@ -6204,7 +6147,7 @@
|
|
|
6204
6147
|
"immutable": true,
|
|
6205
6148
|
"locationInModule": {
|
|
6206
6149
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6207
|
-
"line":
|
|
6150
|
+
"line": 87
|
|
6208
6151
|
},
|
|
6209
6152
|
"name": "memorySize",
|
|
6210
6153
|
"optional": true,
|
|
@@ -6221,7 +6164,7 @@
|
|
|
6221
6164
|
"immutable": true,
|
|
6222
6165
|
"locationInModule": {
|
|
6223
6166
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6224
|
-
"line":
|
|
6167
|
+
"line": 83
|
|
6225
6168
|
},
|
|
6226
6169
|
"name": "removalPolicy",
|
|
6227
6170
|
"optional": true,
|
|
@@ -6238,7 +6181,7 @@
|
|
|
6238
6181
|
"immutable": true,
|
|
6239
6182
|
"locationInModule": {
|
|
6240
6183
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6241
|
-
"line":
|
|
6184
|
+
"line": 85
|
|
6242
6185
|
},
|
|
6243
6186
|
"name": "timeout",
|
|
6244
6187
|
"optional": true,
|
|
@@ -6260,7 +6203,7 @@
|
|
|
6260
6203
|
"kind": "interface",
|
|
6261
6204
|
"locationInModule": {
|
|
6262
6205
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6263
|
-
"line":
|
|
6206
|
+
"line": 43
|
|
6264
6207
|
},
|
|
6265
6208
|
"name": "DatabaseConfig",
|
|
6266
6209
|
"properties": [
|
|
@@ -6273,7 +6216,7 @@
|
|
|
6273
6216
|
"immutable": true,
|
|
6274
6217
|
"locationInModule": {
|
|
6275
6218
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6276
|
-
"line":
|
|
6219
|
+
"line": 53
|
|
6277
6220
|
},
|
|
6278
6221
|
"name": "databaseName",
|
|
6279
6222
|
"type": {
|
|
@@ -6289,7 +6232,7 @@
|
|
|
6289
6232
|
"immutable": true,
|
|
6290
6233
|
"locationInModule": {
|
|
6291
6234
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6292
|
-
"line":
|
|
6235
|
+
"line": 45
|
|
6293
6236
|
},
|
|
6294
6237
|
"name": "engine",
|
|
6295
6238
|
"type": {
|
|
@@ -6305,7 +6248,7 @@
|
|
|
6305
6248
|
"immutable": true,
|
|
6306
6249
|
"locationInModule": {
|
|
6307
6250
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6308
|
-
"line":
|
|
6251
|
+
"line": 51
|
|
6309
6252
|
},
|
|
6310
6253
|
"name": "secret",
|
|
6311
6254
|
"type": {
|
|
@@ -6321,7 +6264,7 @@
|
|
|
6321
6264
|
"immutable": true,
|
|
6322
6265
|
"locationInModule": {
|
|
6323
6266
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6324
|
-
"line":
|
|
6267
|
+
"line": 57
|
|
6325
6268
|
},
|
|
6326
6269
|
"name": "securityGroup",
|
|
6327
6270
|
"type": {
|
|
@@ -6337,7 +6280,7 @@
|
|
|
6337
6280
|
"immutable": true,
|
|
6338
6281
|
"locationInModule": {
|
|
6339
6282
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6340
|
-
"line":
|
|
6283
|
+
"line": 55
|
|
6341
6284
|
},
|
|
6342
6285
|
"name": "vpc",
|
|
6343
6286
|
"type": {
|
|
@@ -6353,7 +6296,7 @@
|
|
|
6353
6296
|
"immutable": true,
|
|
6354
6297
|
"locationInModule": {
|
|
6355
6298
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6356
|
-
"line":
|
|
6299
|
+
"line": 47
|
|
6357
6300
|
},
|
|
6358
6301
|
"name": "cluster",
|
|
6359
6302
|
"optional": true,
|
|
@@ -6370,7 +6313,7 @@
|
|
|
6370
6313
|
"immutable": true,
|
|
6371
6314
|
"locationInModule": {
|
|
6372
6315
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6373
|
-
"line":
|
|
6316
|
+
"line": 49
|
|
6374
6317
|
},
|
|
6375
6318
|
"name": "instance",
|
|
6376
6319
|
"optional": true,
|
|
@@ -6391,7 +6334,7 @@
|
|
|
6391
6334
|
"kind": "enum",
|
|
6392
6335
|
"locationInModule": {
|
|
6393
6336
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6394
|
-
"line":
|
|
6337
|
+
"line": 23
|
|
6395
6338
|
},
|
|
6396
6339
|
"members": [
|
|
6397
6340
|
{
|
|
@@ -6410,14 +6353,12 @@
|
|
|
6410
6353
|
"name": "DatabaseEngine",
|
|
6411
6354
|
"symbolId": "use-cases/utilities/data-loader:DatabaseEngine"
|
|
6412
6355
|
},
|
|
6413
|
-
"@cdklabs/cdk-appmod-catalog-blueprints.
|
|
6356
|
+
"@cdklabs/cdk-appmod-catalog-blueprints.DefaultDocumentProcessingConfig": {
|
|
6414
6357
|
"assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
|
|
6415
6358
|
"docs": {
|
|
6416
|
-
"
|
|
6417
|
-
"stability": "experimental",
|
|
6418
|
-
"summary": "Contains default runtimes that would be referenced by Lambda functions in the various use cases."
|
|
6359
|
+
"stability": "experimental"
|
|
6419
6360
|
},
|
|
6420
|
-
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.
|
|
6361
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.DefaultDocumentProcessingConfig",
|
|
6421
6362
|
"initializer": {
|
|
6422
6363
|
"docs": {
|
|
6423
6364
|
"stability": "experimental"
|
|
@@ -6425,103 +6366,158 @@
|
|
|
6425
6366
|
},
|
|
6426
6367
|
"kind": "class",
|
|
6427
6368
|
"locationInModule": {
|
|
6428
|
-
"filename": "use-cases/
|
|
6429
|
-
"line":
|
|
6369
|
+
"filename": "use-cases/document-processing/default-document-processing-config.ts",
|
|
6370
|
+
"line": 4
|
|
6430
6371
|
},
|
|
6431
|
-
"name": "
|
|
6372
|
+
"name": "DefaultDocumentProcessingConfig",
|
|
6432
6373
|
"properties": [
|
|
6433
6374
|
{
|
|
6434
6375
|
"const": true,
|
|
6435
6376
|
"docs": {
|
|
6436
|
-
"stability": "experimental"
|
|
6437
|
-
"summary": "Default runtime for all Lambda functions in the use cases."
|
|
6377
|
+
"stability": "experimental"
|
|
6438
6378
|
},
|
|
6439
6379
|
"immutable": true,
|
|
6440
6380
|
"locationInModule": {
|
|
6441
|
-
"filename": "use-cases/
|
|
6442
|
-
"line":
|
|
6381
|
+
"filename": "use-cases/document-processing/default-document-processing-config.ts",
|
|
6382
|
+
"line": 5
|
|
6443
6383
|
},
|
|
6444
|
-
"name": "
|
|
6384
|
+
"name": "DEFAULT_OBSERVABILITY_METRIC_SVC_NAME",
|
|
6445
6385
|
"static": true,
|
|
6446
6386
|
"type": {
|
|
6447
|
-
"
|
|
6387
|
+
"primitive": "string"
|
|
6448
6388
|
}
|
|
6449
|
-
}
|
|
6389
|
+
}
|
|
6390
|
+
],
|
|
6391
|
+
"symbolId": "use-cases/document-processing/default-document-processing-config:DefaultDocumentProcessingConfig"
|
|
6392
|
+
},
|
|
6393
|
+
"@cdklabs/cdk-appmod-catalog-blueprints.DefaultObservabilityConfig": {
|
|
6394
|
+
"assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
|
|
6395
|
+
"docs": {
|
|
6396
|
+
"stability": "experimental",
|
|
6397
|
+
"summary": "Contains default constants for Observability related configuration."
|
|
6398
|
+
},
|
|
6399
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.DefaultObservabilityConfig",
|
|
6400
|
+
"initializer": {
|
|
6401
|
+
"docs": {
|
|
6402
|
+
"stability": "experimental"
|
|
6403
|
+
}
|
|
6404
|
+
},
|
|
6405
|
+
"kind": "class",
|
|
6406
|
+
"locationInModule": {
|
|
6407
|
+
"filename": "use-cases/utilities/observability/default-observability-config.ts",
|
|
6408
|
+
"line": 7
|
|
6409
|
+
},
|
|
6410
|
+
"name": "DefaultObservabilityConfig",
|
|
6411
|
+
"properties": [
|
|
6450
6412
|
{
|
|
6451
6413
|
"const": true,
|
|
6452
6414
|
"docs": {
|
|
6453
6415
|
"stability": "experimental",
|
|
6454
|
-
"summary": "Default
|
|
6416
|
+
"summary": "Default namespace for powertools."
|
|
6455
6417
|
},
|
|
6456
6418
|
"immutable": true,
|
|
6457
6419
|
"locationInModule": {
|
|
6458
|
-
"filename": "use-cases/
|
|
6459
|
-
"line":
|
|
6420
|
+
"filename": "use-cases/utilities/observability/default-observability-config.ts",
|
|
6421
|
+
"line": 12
|
|
6460
6422
|
},
|
|
6461
|
-
"name": "
|
|
6423
|
+
"name": "DEFAULT_METRIC_NAMESPACE",
|
|
6462
6424
|
"static": true,
|
|
6463
6425
|
"type": {
|
|
6464
|
-
"
|
|
6465
|
-
}
|
|
6466
|
-
},
|
|
6467
|
-
{
|
|
6468
|
-
"const": true,
|
|
6469
|
-
"docs": {
|
|
6470
|
-
"stability": "experimental",
|
|
6471
|
-
"summary": "Default bundling arguments for Python function."
|
|
6472
|
-
},
|
|
6473
|
-
"immutable": true,
|
|
6474
|
-
"locationInModule": {
|
|
6475
|
-
"filename": "use-cases/framework/custom-resource/default-runtimes.ts",
|
|
6476
|
-
"line": 26
|
|
6477
|
-
},
|
|
6478
|
-
"name": "PYTHON_FUNCTION_BUNDLING",
|
|
6479
|
-
"static": true,
|
|
6480
|
-
"type": {
|
|
6481
|
-
"fqn": "@aws-cdk/aws-lambda-python-alpha.BundlingOptions"
|
|
6426
|
+
"primitive": "string"
|
|
6482
6427
|
}
|
|
6483
6428
|
}
|
|
6484
6429
|
],
|
|
6485
|
-
"symbolId": "use-cases/
|
|
6430
|
+
"symbolId": "use-cases/utilities/observability/default-observability-config:DefaultObservabilityConfig"
|
|
6486
6431
|
},
|
|
6487
|
-
"@cdklabs/cdk-appmod-catalog-blueprints.
|
|
6432
|
+
"@cdklabs/cdk-appmod-catalog-blueprints.DefaultRuntimes": {
|
|
6488
6433
|
"assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
|
|
6489
6434
|
"docs": {
|
|
6490
|
-
"remarks": "
|
|
6435
|
+
"remarks": "Updating of\nRuntime versions should be done here.",
|
|
6491
6436
|
"stability": "experimental",
|
|
6492
|
-
"summary": "
|
|
6437
|
+
"summary": "Contains default runtimes that would be referenced by Lambda functions in the various use cases."
|
|
6493
6438
|
},
|
|
6494
|
-
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.
|
|
6495
|
-
"
|
|
6439
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.DefaultRuntimes",
|
|
6440
|
+
"initializer": {
|
|
6441
|
+
"docs": {
|
|
6442
|
+
"stability": "experimental"
|
|
6443
|
+
}
|
|
6444
|
+
},
|
|
6445
|
+
"kind": "class",
|
|
6496
6446
|
"locationInModule": {
|
|
6497
|
-
"filename": "use-cases/
|
|
6498
|
-
"line":
|
|
6447
|
+
"filename": "use-cases/framework/custom-resource/default-runtimes.ts",
|
|
6448
|
+
"line": 11
|
|
6499
6449
|
},
|
|
6500
|
-
"
|
|
6450
|
+
"name": "DefaultRuntimes",
|
|
6451
|
+
"properties": [
|
|
6501
6452
|
{
|
|
6453
|
+
"const": true,
|
|
6502
6454
|
"docs": {
|
|
6503
6455
|
"stability": "experimental",
|
|
6504
|
-
"summary": "
|
|
6456
|
+
"summary": "Default runtime for all Lambda functions in the use cases."
|
|
6505
6457
|
},
|
|
6506
|
-
"
|
|
6458
|
+
"immutable": true,
|
|
6459
|
+
"locationInModule": {
|
|
6460
|
+
"filename": "use-cases/framework/custom-resource/default-runtimes.ts",
|
|
6461
|
+
"line": 16
|
|
6462
|
+
},
|
|
6463
|
+
"name": "NODEJS",
|
|
6464
|
+
"static": true,
|
|
6465
|
+
"type": {
|
|
6466
|
+
"fqn": "aws-cdk-lib.aws_lambda.Runtime"
|
|
6467
|
+
}
|
|
6507
6468
|
},
|
|
6508
6469
|
{
|
|
6470
|
+
"const": true,
|
|
6509
6471
|
"docs": {
|
|
6510
6472
|
"stability": "experimental",
|
|
6511
|
-
"summary": "
|
|
6473
|
+
"summary": "Default runtime for Python based Lambda functions."
|
|
6474
|
+
},
|
|
6475
|
+
"immutable": true,
|
|
6476
|
+
"locationInModule": {
|
|
6477
|
+
"filename": "use-cases/framework/custom-resource/default-runtimes.ts",
|
|
6478
|
+
"line": 21
|
|
6479
|
+
},
|
|
6480
|
+
"name": "PYTHON",
|
|
6481
|
+
"static": true,
|
|
6482
|
+
"type": {
|
|
6483
|
+
"fqn": "aws-cdk-lib.aws_lambda.Runtime"
|
|
6484
|
+
}
|
|
6485
|
+
},
|
|
6486
|
+
{
|
|
6487
|
+
"const": true,
|
|
6488
|
+
"docs": {
|
|
6489
|
+
"stability": "experimental"
|
|
6490
|
+
},
|
|
6491
|
+
"immutable": true,
|
|
6492
|
+
"locationInModule": {
|
|
6493
|
+
"filename": "use-cases/framework/custom-resource/default-runtimes.ts",
|
|
6494
|
+
"line": 33
|
|
6512
6495
|
},
|
|
6513
|
-
"name": "
|
|
6496
|
+
"name": "PYTHON_BUNDLING_IMAGE",
|
|
6497
|
+
"static": true,
|
|
6498
|
+
"type": {
|
|
6499
|
+
"primitive": "string"
|
|
6500
|
+
}
|
|
6514
6501
|
},
|
|
6515
6502
|
{
|
|
6503
|
+
"const": true,
|
|
6516
6504
|
"docs": {
|
|
6517
6505
|
"stability": "experimental",
|
|
6518
|
-
"summary": "
|
|
6506
|
+
"summary": "Default bundling arguments for Python function."
|
|
6507
|
+
},
|
|
6508
|
+
"immutable": true,
|
|
6509
|
+
"locationInModule": {
|
|
6510
|
+
"filename": "use-cases/framework/custom-resource/default-runtimes.ts",
|
|
6511
|
+
"line": 26
|
|
6519
6512
|
},
|
|
6520
|
-
"name": "
|
|
6513
|
+
"name": "PYTHON_FUNCTION_BUNDLING",
|
|
6514
|
+
"static": true,
|
|
6515
|
+
"type": {
|
|
6516
|
+
"fqn": "@aws-cdk/aws-lambda-python-alpha.BundlingOptions"
|
|
6517
|
+
}
|
|
6521
6518
|
}
|
|
6522
6519
|
],
|
|
6523
|
-
"
|
|
6524
|
-
"symbolId": "use-cases/document-processing/base-document-processing:DocumentProcessingPrefix"
|
|
6520
|
+
"symbolId": "use-cases/framework/custom-resource/default-runtimes:DefaultRuntimes"
|
|
6525
6521
|
},
|
|
6526
6522
|
"@cdklabs/cdk-appmod-catalog-blueprints.EventbridgeBroker": {
|
|
6527
6523
|
"assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
|
|
@@ -6719,7 +6715,7 @@
|
|
|
6719
6715
|
"kind": "interface",
|
|
6720
6716
|
"locationInModule": {
|
|
6721
6717
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6722
|
-
"line":
|
|
6718
|
+
"line": 63
|
|
6723
6719
|
},
|
|
6724
6720
|
"name": "FileInput",
|
|
6725
6721
|
"properties": [
|
|
@@ -6732,7 +6728,7 @@
|
|
|
6732
6728
|
"immutable": true,
|
|
6733
6729
|
"locationInModule": {
|
|
6734
6730
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6735
|
-
"line":
|
|
6731
|
+
"line": 65
|
|
6736
6732
|
},
|
|
6737
6733
|
"name": "filePath",
|
|
6738
6734
|
"type": {
|
|
@@ -6748,7 +6744,7 @@
|
|
|
6748
6744
|
"immutable": true,
|
|
6749
6745
|
"locationInModule": {
|
|
6750
6746
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6751
|
-
"line":
|
|
6747
|
+
"line": 67
|
|
6752
6748
|
},
|
|
6753
6749
|
"name": "fileType",
|
|
6754
6750
|
"type": {
|
|
@@ -6764,7 +6760,7 @@
|
|
|
6764
6760
|
"immutable": true,
|
|
6765
6761
|
"locationInModule": {
|
|
6766
6762
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6767
|
-
"line":
|
|
6763
|
+
"line": 71
|
|
6768
6764
|
},
|
|
6769
6765
|
"name": "continueOnError",
|
|
6770
6766
|
"optional": true,
|
|
@@ -6781,7 +6777,7 @@
|
|
|
6781
6777
|
"immutable": true,
|
|
6782
6778
|
"locationInModule": {
|
|
6783
6779
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6784
|
-
"line":
|
|
6780
|
+
"line": 69
|
|
6785
6781
|
},
|
|
6786
6782
|
"name": "executionOrder",
|
|
6787
6783
|
"optional": true,
|
|
@@ -6802,7 +6798,7 @@
|
|
|
6802
6798
|
"kind": "enum",
|
|
6803
6799
|
"locationInModule": {
|
|
6804
6800
|
"filename": "use-cases/utilities/data-loader.ts",
|
|
6805
|
-
"line":
|
|
6801
|
+
"line": 31
|
|
6806
6802
|
},
|
|
6807
6803
|
"members": [
|
|
6808
6804
|
{
|
|
@@ -7194,6 +7190,217 @@
|
|
|
7194
7190
|
],
|
|
7195
7191
|
"symbolId": "use-cases/webapp/frontend-construct:FrontendProps"
|
|
7196
7192
|
},
|
|
7193
|
+
"@cdklabs/cdk-appmod-catalog-blueprints.IAdapter": {
|
|
7194
|
+
"assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
|
|
7195
|
+
"docs": {
|
|
7196
|
+
"stability": "experimental",
|
|
7197
|
+
"summary": "Abstraction to enable different types of source triggers for the intelligent document processing workflow."
|
|
7198
|
+
},
|
|
7199
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.IAdapter",
|
|
7200
|
+
"kind": "interface",
|
|
7201
|
+
"locationInModule": {
|
|
7202
|
+
"filename": "use-cases/document-processing/adapter/adapter.ts",
|
|
7203
|
+
"line": 13
|
|
7204
|
+
},
|
|
7205
|
+
"methods": [
|
|
7206
|
+
{
|
|
7207
|
+
"abstract": true,
|
|
7208
|
+
"docs": {
|
|
7209
|
+
"returns": "Chain to be added to the state machine to handle failure scenarios",
|
|
7210
|
+
"stability": "experimental",
|
|
7211
|
+
"summary": "Create the adapter specific handler for failed processing."
|
|
7212
|
+
},
|
|
7213
|
+
"locationInModule": {
|
|
7214
|
+
"filename": "use-cases/document-processing/adapter/adapter.ts",
|
|
7215
|
+
"line": 47
|
|
7216
|
+
},
|
|
7217
|
+
"name": "createFailedChain",
|
|
7218
|
+
"parameters": [
|
|
7219
|
+
{
|
|
7220
|
+
"docs": {
|
|
7221
|
+
"summary": "Scope to use in relation to the CDK hierarchy."
|
|
7222
|
+
},
|
|
7223
|
+
"name": "scope",
|
|
7224
|
+
"type": {
|
|
7225
|
+
"fqn": "constructs.Construct"
|
|
7226
|
+
}
|
|
7227
|
+
}
|
|
7228
|
+
],
|
|
7229
|
+
"returns": {
|
|
7230
|
+
"type": {
|
|
7231
|
+
"fqn": "aws-cdk-lib.aws_stepfunctions.Chain"
|
|
7232
|
+
}
|
|
7233
|
+
}
|
|
7234
|
+
},
|
|
7235
|
+
{
|
|
7236
|
+
"abstract": true,
|
|
7237
|
+
"docs": {
|
|
7238
|
+
"remarks": "Important: resource created should trigger the state machine",
|
|
7239
|
+
"returns": "Resources that are created",
|
|
7240
|
+
"stability": "experimental",
|
|
7241
|
+
"summary": "Create resources that would receive the data and trigger the workflow."
|
|
7242
|
+
},
|
|
7243
|
+
"locationInModule": {
|
|
7244
|
+
"filename": "use-cases/document-processing/adapter/adapter.ts",
|
|
7245
|
+
"line": 30
|
|
7246
|
+
},
|
|
7247
|
+
"name": "createIngressTrigger",
|
|
7248
|
+
"parameters": [
|
|
7249
|
+
{
|
|
7250
|
+
"docs": {
|
|
7251
|
+
"summary": "Scope to use in relation to the CDK hierarchy."
|
|
7252
|
+
},
|
|
7253
|
+
"name": "scope",
|
|
7254
|
+
"type": {
|
|
7255
|
+
"fqn": "constructs.Construct"
|
|
7256
|
+
}
|
|
7257
|
+
},
|
|
7258
|
+
{
|
|
7259
|
+
"docs": {
|
|
7260
|
+
"summary": "The workflow of the document processor."
|
|
7261
|
+
},
|
|
7262
|
+
"name": "stateMachine",
|
|
7263
|
+
"type": {
|
|
7264
|
+
"fqn": "aws-cdk-lib.aws_stepfunctions.StateMachine"
|
|
7265
|
+
}
|
|
7266
|
+
},
|
|
7267
|
+
{
|
|
7268
|
+
"docs": {
|
|
7269
|
+
"summary": "The parameters passed to the document processing L3 Construct."
|
|
7270
|
+
},
|
|
7271
|
+
"name": "props",
|
|
7272
|
+
"type": {
|
|
7273
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessingProps"
|
|
7274
|
+
}
|
|
7275
|
+
}
|
|
7276
|
+
],
|
|
7277
|
+
"returns": {
|
|
7278
|
+
"type": {
|
|
7279
|
+
"collection": {
|
|
7280
|
+
"elementtype": {
|
|
7281
|
+
"primitive": "any"
|
|
7282
|
+
},
|
|
7283
|
+
"kind": "map"
|
|
7284
|
+
}
|
|
7285
|
+
}
|
|
7286
|
+
}
|
|
7287
|
+
},
|
|
7288
|
+
{
|
|
7289
|
+
"abstract": true,
|
|
7290
|
+
"docs": {
|
|
7291
|
+
"returns": "Chain to be added to the state machine to handle successful scenarios",
|
|
7292
|
+
"stability": "experimental",
|
|
7293
|
+
"summary": "Create the adapter specific handler for successful processing."
|
|
7294
|
+
},
|
|
7295
|
+
"locationInModule": {
|
|
7296
|
+
"filename": "use-cases/document-processing/adapter/adapter.ts",
|
|
7297
|
+
"line": 54
|
|
7298
|
+
},
|
|
7299
|
+
"name": "createSuccessChain",
|
|
7300
|
+
"parameters": [
|
|
7301
|
+
{
|
|
7302
|
+
"docs": {
|
|
7303
|
+
"summary": "Scope to use in relation to the CDK hierarchy."
|
|
7304
|
+
},
|
|
7305
|
+
"name": "scope",
|
|
7306
|
+
"type": {
|
|
7307
|
+
"fqn": "constructs.Construct"
|
|
7308
|
+
}
|
|
7309
|
+
}
|
|
7310
|
+
],
|
|
7311
|
+
"returns": {
|
|
7312
|
+
"type": {
|
|
7313
|
+
"fqn": "aws-cdk-lib.aws_stepfunctions.Chain"
|
|
7314
|
+
}
|
|
7315
|
+
}
|
|
7316
|
+
},
|
|
7317
|
+
{
|
|
7318
|
+
"abstract": true,
|
|
7319
|
+
"docs": {
|
|
7320
|
+
"default": "false",
|
|
7321
|
+
"returns": "PolicyStatement[] IAM policy statements that would included in the state machine IAM role",
|
|
7322
|
+
"stability": "experimental",
|
|
7323
|
+
"summary": "Generate IAM statements that can be used by other resources to access the storage."
|
|
7324
|
+
},
|
|
7325
|
+
"locationInModule": {
|
|
7326
|
+
"filename": "use-cases/document-processing/adapter/adapter.ts",
|
|
7327
|
+
"line": 40
|
|
7328
|
+
},
|
|
7329
|
+
"name": "generateAdapterIAMPolicies",
|
|
7330
|
+
"parameters": [
|
|
7331
|
+
{
|
|
7332
|
+
"docs": {
|
|
7333
|
+
"summary": "(Optional) list of additional actions in relation to the underlying storage for the adapter."
|
|
7334
|
+
},
|
|
7335
|
+
"name": "additionalIAMActions",
|
|
7336
|
+
"optional": true,
|
|
7337
|
+
"type": {
|
|
7338
|
+
"collection": {
|
|
7339
|
+
"elementtype": {
|
|
7340
|
+
"primitive": "string"
|
|
7341
|
+
},
|
|
7342
|
+
"kind": "array"
|
|
7343
|
+
}
|
|
7344
|
+
}
|
|
7345
|
+
},
|
|
7346
|
+
{
|
|
7347
|
+
"docs": {
|
|
7348
|
+
"summary": "(Optional) whether the resulting permissions would only be the IAM actions indicated in the `additionalIAMActions` parameter."
|
|
7349
|
+
},
|
|
7350
|
+
"name": "narrowActions",
|
|
7351
|
+
"optional": true,
|
|
7352
|
+
"type": {
|
|
7353
|
+
"primitive": "boolean"
|
|
7354
|
+
}
|
|
7355
|
+
}
|
|
7356
|
+
],
|
|
7357
|
+
"returns": {
|
|
7358
|
+
"type": {
|
|
7359
|
+
"collection": {
|
|
7360
|
+
"elementtype": {
|
|
7361
|
+
"fqn": "aws-cdk-lib.aws_iam.PolicyStatement"
|
|
7362
|
+
},
|
|
7363
|
+
"kind": "array"
|
|
7364
|
+
}
|
|
7365
|
+
}
|
|
7366
|
+
}
|
|
7367
|
+
},
|
|
7368
|
+
{
|
|
7369
|
+
"abstract": true,
|
|
7370
|
+
"docs": {
|
|
7371
|
+
"stability": "experimental",
|
|
7372
|
+
"summary": "Initializes the adapter."
|
|
7373
|
+
},
|
|
7374
|
+
"locationInModule": {
|
|
7375
|
+
"filename": "use-cases/document-processing/adapter/adapter.ts",
|
|
7376
|
+
"line": 19
|
|
7377
|
+
},
|
|
7378
|
+
"name": "init",
|
|
7379
|
+
"parameters": [
|
|
7380
|
+
{
|
|
7381
|
+
"docs": {
|
|
7382
|
+
"summary": "Scope to use in relation to the CDK hierarchy."
|
|
7383
|
+
},
|
|
7384
|
+
"name": "scope",
|
|
7385
|
+
"type": {
|
|
7386
|
+
"fqn": "constructs.Construct"
|
|
7387
|
+
}
|
|
7388
|
+
},
|
|
7389
|
+
{
|
|
7390
|
+
"docs": {
|
|
7391
|
+
"summary": "The parameters passed to the document processing L3 Construct."
|
|
7392
|
+
},
|
|
7393
|
+
"name": "props",
|
|
7394
|
+
"type": {
|
|
7395
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessingProps"
|
|
7396
|
+
}
|
|
7397
|
+
}
|
|
7398
|
+
]
|
|
7399
|
+
}
|
|
7400
|
+
],
|
|
7401
|
+
"name": "IAdapter",
|
|
7402
|
+
"symbolId": "use-cases/document-processing/adapter/adapter:IAdapter"
|
|
7403
|
+
},
|
|
7197
7404
|
"@cdklabs/cdk-appmod-catalog-blueprints.IObservable": {
|
|
7198
7405
|
"assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
|
|
7199
7406
|
"docs": {
|
|
@@ -7294,7 +7501,7 @@
|
|
|
7294
7501
|
"kind": "class",
|
|
7295
7502
|
"locationInModule": {
|
|
7296
7503
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7297
|
-
"line":
|
|
7504
|
+
"line": 73
|
|
7298
7505
|
},
|
|
7299
7506
|
"methods": [
|
|
7300
7507
|
{
|
|
@@ -7305,7 +7512,7 @@
|
|
|
7305
7512
|
},
|
|
7306
7513
|
"locationInModule": {
|
|
7307
7514
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7308
|
-
"line":
|
|
7515
|
+
"line": 203
|
|
7309
7516
|
},
|
|
7310
7517
|
"name": "createDynamoDbPolicyStatement",
|
|
7311
7518
|
"parameters": [
|
|
@@ -7349,7 +7556,7 @@
|
|
|
7349
7556
|
},
|
|
7350
7557
|
"locationInModule": {
|
|
7351
7558
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7352
|
-
"line":
|
|
7559
|
+
"line": 318
|
|
7353
7560
|
},
|
|
7354
7561
|
"name": "createKmsPolicyStatement",
|
|
7355
7562
|
"parameters": [
|
|
@@ -7393,7 +7600,7 @@
|
|
|
7393
7600
|
},
|
|
7394
7601
|
"locationInModule": {
|
|
7395
7602
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7396
|
-
"line":
|
|
7603
|
+
"line": 81
|
|
7397
7604
|
},
|
|
7398
7605
|
"name": "createLogsPermissions",
|
|
7399
7606
|
"parameters": [
|
|
@@ -7422,7 +7629,7 @@
|
|
|
7422
7629
|
},
|
|
7423
7630
|
"locationInModule": {
|
|
7424
7631
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7425
|
-
"line":
|
|
7632
|
+
"line": 222
|
|
7426
7633
|
},
|
|
7427
7634
|
"name": "createS3PolicyStatement",
|
|
7428
7635
|
"parameters": [
|
|
@@ -7476,7 +7683,7 @@
|
|
|
7476
7683
|
},
|
|
7477
7684
|
"locationInModule": {
|
|
7478
7685
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7479
|
-
"line":
|
|
7686
|
+
"line": 300
|
|
7480
7687
|
},
|
|
7481
7688
|
"name": "createSecretsManagerPolicyStatement",
|
|
7482
7689
|
"parameters": [
|
|
@@ -7520,7 +7727,7 @@
|
|
|
7520
7727
|
},
|
|
7521
7728
|
"locationInModule": {
|
|
7522
7729
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7523
|
-
"line":
|
|
7730
|
+
"line": 264
|
|
7524
7731
|
},
|
|
7525
7732
|
"name": "createSnsPolicyStatement",
|
|
7526
7733
|
"parameters": [
|
|
@@ -7564,7 +7771,7 @@
|
|
|
7564
7771
|
},
|
|
7565
7772
|
"locationInModule": {
|
|
7566
7773
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7567
|
-
"line":
|
|
7774
|
+
"line": 246
|
|
7568
7775
|
},
|
|
7569
7776
|
"name": "createSqsPolicyStatement",
|
|
7570
7777
|
"parameters": [
|
|
@@ -7608,7 +7815,7 @@
|
|
|
7608
7815
|
},
|
|
7609
7816
|
"locationInModule": {
|
|
7610
7817
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7611
|
-
"line":
|
|
7818
|
+
"line": 282
|
|
7612
7819
|
},
|
|
7613
7820
|
"name": "createStepFunctionsPolicyStatement",
|
|
7614
7821
|
"parameters": [
|
|
@@ -7652,7 +7859,7 @@
|
|
|
7652
7859
|
},
|
|
7653
7860
|
"locationInModule": {
|
|
7654
7861
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7655
|
-
"line":
|
|
7862
|
+
"line": 148
|
|
7656
7863
|
},
|
|
7657
7864
|
"name": "createVpcPermissions",
|
|
7658
7865
|
"returns": {
|
|
@@ -7675,7 +7882,7 @@
|
|
|
7675
7882
|
},
|
|
7676
7883
|
"locationInModule": {
|
|
7677
7884
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7678
|
-
"line":
|
|
7885
|
+
"line": 169
|
|
7679
7886
|
},
|
|
7680
7887
|
"name": "createXRayPermissions",
|
|
7681
7888
|
"returns": {
|
|
@@ -7696,7 +7903,7 @@
|
|
|
7696
7903
|
},
|
|
7697
7904
|
"locationInModule": {
|
|
7698
7905
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7699
|
-
"line":
|
|
7906
|
+
"line": 114
|
|
7700
7907
|
},
|
|
7701
7908
|
"name": "generateLambdaVPCPermissions",
|
|
7702
7909
|
"returns": {
|
|
@@ -7714,7 +7921,7 @@
|
|
|
7714
7921
|
},
|
|
7715
7922
|
"locationInModule": {
|
|
7716
7923
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7717
|
-
"line":
|
|
7924
|
+
"line": 139
|
|
7718
7925
|
},
|
|
7719
7926
|
"name": "generateUniqueFunctionName",
|
|
7720
7927
|
"parameters": [
|
|
@@ -7752,7 +7959,7 @@
|
|
|
7752
7959
|
},
|
|
7753
7960
|
"locationInModule": {
|
|
7754
7961
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7755
|
-
"line":
|
|
7962
|
+
"line": 188
|
|
7756
7963
|
},
|
|
7757
7964
|
"name": "getStackInfo",
|
|
7758
7965
|
"parameters": [
|
|
@@ -7775,6 +7982,24 @@
|
|
|
7775
7982
|
}
|
|
7776
7983
|
],
|
|
7777
7984
|
"name": "LambdaIamUtils",
|
|
7985
|
+
"properties": [
|
|
7986
|
+
{
|
|
7987
|
+
"const": true,
|
|
7988
|
+
"docs": {
|
|
7989
|
+
"stability": "experimental"
|
|
7990
|
+
},
|
|
7991
|
+
"immutable": true,
|
|
7992
|
+
"locationInModule": {
|
|
7993
|
+
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7994
|
+
"line": 74
|
|
7995
|
+
},
|
|
7996
|
+
"name": "OBSERVABILITY_SUFFIX",
|
|
7997
|
+
"static": true,
|
|
7998
|
+
"type": {
|
|
7999
|
+
"primitive": "string"
|
|
8000
|
+
}
|
|
8001
|
+
}
|
|
8002
|
+
],
|
|
7778
8003
|
"symbolId": "use-cases/utilities/lambda-iam-utils:LambdaIamUtils"
|
|
7779
8004
|
},
|
|
7780
8005
|
"@cdklabs/cdk-appmod-catalog-blueprints.LambdaIamUtilsStackInfo": {
|
|
@@ -7904,6 +8129,25 @@
|
|
|
7904
8129
|
"fqn": "constructs.Construct"
|
|
7905
8130
|
}
|
|
7906
8131
|
},
|
|
8132
|
+
{
|
|
8133
|
+
"abstract": true,
|
|
8134
|
+
"docs": {
|
|
8135
|
+
"default": "false",
|
|
8136
|
+
"remarks": "This would have an impact\non the result IAM policy for the LogGroup for the Lambda function",
|
|
8137
|
+
"stability": "experimental",
|
|
8138
|
+
"summary": "Whether observability is enabled or not."
|
|
8139
|
+
},
|
|
8140
|
+
"immutable": true,
|
|
8141
|
+
"locationInModule": {
|
|
8142
|
+
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
8143
|
+
"line": 52
|
|
8144
|
+
},
|
|
8145
|
+
"name": "enableObservability",
|
|
8146
|
+
"optional": true,
|
|
8147
|
+
"type": {
|
|
8148
|
+
"primitive": "boolean"
|
|
8149
|
+
}
|
|
8150
|
+
},
|
|
7907
8151
|
{
|
|
7908
8152
|
"abstract": true,
|
|
7909
8153
|
"docs": {
|
|
@@ -7936,7 +8180,7 @@
|
|
|
7936
8180
|
"kind": "interface",
|
|
7937
8181
|
"locationInModule": {
|
|
7938
8182
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7939
|
-
"line":
|
|
8183
|
+
"line": 58
|
|
7940
8184
|
},
|
|
7941
8185
|
"name": "LambdaLogsPermissionsResult",
|
|
7942
8186
|
"properties": [
|
|
@@ -7949,7 +8193,7 @@
|
|
|
7949
8193
|
"immutable": true,
|
|
7950
8194
|
"locationInModule": {
|
|
7951
8195
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7952
|
-
"line":
|
|
8196
|
+
"line": 62
|
|
7953
8197
|
},
|
|
7954
8198
|
"name": "policyStatements",
|
|
7955
8199
|
"type": {
|
|
@@ -7970,7 +8214,7 @@
|
|
|
7970
8214
|
"immutable": true,
|
|
7971
8215
|
"locationInModule": {
|
|
7972
8216
|
"filename": "use-cases/utilities/lambda-iam-utils.ts",
|
|
7973
|
-
"line":
|
|
8217
|
+
"line": 67
|
|
7974
8218
|
},
|
|
7975
8219
|
"name": "uniqueFunctionName",
|
|
7976
8220
|
"type": {
|
|
@@ -7992,7 +8236,7 @@
|
|
|
7992
8236
|
},
|
|
7993
8237
|
"locationInModule": {
|
|
7994
8238
|
"filename": "use-cases/utilities/observability/lambda-observability-property-injector.ts",
|
|
7995
|
-
"line":
|
|
8239
|
+
"line": 12
|
|
7996
8240
|
},
|
|
7997
8241
|
"parameters": [
|
|
7998
8242
|
{
|
|
@@ -8009,7 +8253,7 @@
|
|
|
8009
8253
|
"kind": "class",
|
|
8010
8254
|
"locationInModule": {
|
|
8011
8255
|
"filename": "use-cases/utilities/observability/lambda-observability-property-injector.ts",
|
|
8012
|
-
"line":
|
|
8256
|
+
"line": 8
|
|
8013
8257
|
},
|
|
8014
8258
|
"methods": [
|
|
8015
8259
|
{
|
|
@@ -8019,7 +8263,7 @@
|
|
|
8019
8263
|
},
|
|
8020
8264
|
"locationInModule": {
|
|
8021
8265
|
"filename": "use-cases/utilities/observability/lambda-observability-property-injector.ts",
|
|
8022
|
-
"line":
|
|
8266
|
+
"line": 17
|
|
8023
8267
|
},
|
|
8024
8268
|
"name": "inject",
|
|
8025
8269
|
"overrides": "aws-cdk-lib.IPropertyInjector",
|
|
@@ -8054,7 +8298,7 @@
|
|
|
8054
8298
|
"immutable": true,
|
|
8055
8299
|
"locationInModule": {
|
|
8056
8300
|
"filename": "use-cases/utilities/observability/lambda-observability-property-injector.ts",
|
|
8057
|
-
"line":
|
|
8301
|
+
"line": 9
|
|
8058
8302
|
},
|
|
8059
8303
|
"name": "constructUniqueId",
|
|
8060
8304
|
"overrides": "aws-cdk-lib.IPropertyInjector",
|
|
@@ -8069,7 +8313,7 @@
|
|
|
8069
8313
|
"immutable": true,
|
|
8070
8314
|
"locationInModule": {
|
|
8071
8315
|
"filename": "use-cases/utilities/observability/lambda-observability-property-injector.ts",
|
|
8072
|
-
"line":
|
|
8316
|
+
"line": 10
|
|
8073
8317
|
},
|
|
8074
8318
|
"name": "logGroupDataProtection",
|
|
8075
8319
|
"type": {
|
|
@@ -8539,6 +8783,335 @@
|
|
|
8539
8783
|
"name": "PowertoolsConfig",
|
|
8540
8784
|
"symbolId": "use-cases/utilities/observability/powertools-config:PowertoolsConfig"
|
|
8541
8785
|
},
|
|
8786
|
+
"@cdklabs/cdk-appmod-catalog-blueprints.QueuedS3Adapter": {
|
|
8787
|
+
"assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
|
|
8788
|
+
"docs": {
|
|
8789
|
+
"stability": "experimental",
|
|
8790
|
+
"summary": "This adapter allows the intelligent document processing workflow to be triggered by files that are uploaded into a S3 Bucket."
|
|
8791
|
+
},
|
|
8792
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.QueuedS3Adapter",
|
|
8793
|
+
"initializer": {
|
|
8794
|
+
"docs": {
|
|
8795
|
+
"stability": "experimental"
|
|
8796
|
+
},
|
|
8797
|
+
"locationInModule": {
|
|
8798
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
8799
|
+
"line": 91
|
|
8800
|
+
},
|
|
8801
|
+
"parameters": [
|
|
8802
|
+
{
|
|
8803
|
+
"name": "adapterProps",
|
|
8804
|
+
"optional": true,
|
|
8805
|
+
"type": {
|
|
8806
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.QueuedS3AdapterProps"
|
|
8807
|
+
}
|
|
8808
|
+
}
|
|
8809
|
+
]
|
|
8810
|
+
},
|
|
8811
|
+
"interfaces": [
|
|
8812
|
+
"@cdklabs/cdk-appmod-catalog-blueprints.IAdapter"
|
|
8813
|
+
],
|
|
8814
|
+
"kind": "class",
|
|
8815
|
+
"locationInModule": {
|
|
8816
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
8817
|
+
"line": 86
|
|
8818
|
+
},
|
|
8819
|
+
"methods": [
|
|
8820
|
+
{
|
|
8821
|
+
"docs": {
|
|
8822
|
+
"stability": "experimental",
|
|
8823
|
+
"summary": "Create the adapter specific handler for failed processing."
|
|
8824
|
+
},
|
|
8825
|
+
"locationInModule": {
|
|
8826
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
8827
|
+
"line": 272
|
|
8828
|
+
},
|
|
8829
|
+
"name": "createFailedChain",
|
|
8830
|
+
"overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IAdapter",
|
|
8831
|
+
"parameters": [
|
|
8832
|
+
{
|
|
8833
|
+
"name": "scope",
|
|
8834
|
+
"type": {
|
|
8835
|
+
"fqn": "constructs.Construct"
|
|
8836
|
+
}
|
|
8837
|
+
}
|
|
8838
|
+
],
|
|
8839
|
+
"returns": {
|
|
8840
|
+
"type": {
|
|
8841
|
+
"fqn": "aws-cdk-lib.aws_stepfunctions.Chain"
|
|
8842
|
+
}
|
|
8843
|
+
}
|
|
8844
|
+
},
|
|
8845
|
+
{
|
|
8846
|
+
"docs": {
|
|
8847
|
+
"remarks": "Important: resource created should trigger the state machine",
|
|
8848
|
+
"stability": "experimental",
|
|
8849
|
+
"summary": "Create resources that would receive the data and trigger the workflow."
|
|
8850
|
+
},
|
|
8851
|
+
"locationInModule": {
|
|
8852
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
8853
|
+
"line": 148
|
|
8854
|
+
},
|
|
8855
|
+
"name": "createIngressTrigger",
|
|
8856
|
+
"overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IAdapter",
|
|
8857
|
+
"parameters": [
|
|
8858
|
+
{
|
|
8859
|
+
"name": "scope",
|
|
8860
|
+
"type": {
|
|
8861
|
+
"fqn": "constructs.Construct"
|
|
8862
|
+
}
|
|
8863
|
+
},
|
|
8864
|
+
{
|
|
8865
|
+
"name": "stateMachine",
|
|
8866
|
+
"type": {
|
|
8867
|
+
"fqn": "aws-cdk-lib.aws_stepfunctions.StateMachine"
|
|
8868
|
+
}
|
|
8869
|
+
},
|
|
8870
|
+
{
|
|
8871
|
+
"name": "props",
|
|
8872
|
+
"type": {
|
|
8873
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessingProps"
|
|
8874
|
+
}
|
|
8875
|
+
}
|
|
8876
|
+
],
|
|
8877
|
+
"returns": {
|
|
8878
|
+
"type": {
|
|
8879
|
+
"collection": {
|
|
8880
|
+
"elementtype": {
|
|
8881
|
+
"primitive": "any"
|
|
8882
|
+
},
|
|
8883
|
+
"kind": "map"
|
|
8884
|
+
}
|
|
8885
|
+
}
|
|
8886
|
+
}
|
|
8887
|
+
},
|
|
8888
|
+
{
|
|
8889
|
+
"docs": {
|
|
8890
|
+
"stability": "experimental",
|
|
8891
|
+
"summary": "Create the adapter specific handler for successful processing."
|
|
8892
|
+
},
|
|
8893
|
+
"locationInModule": {
|
|
8894
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
8895
|
+
"line": 301
|
|
8896
|
+
},
|
|
8897
|
+
"name": "createSuccessChain",
|
|
8898
|
+
"overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IAdapter",
|
|
8899
|
+
"parameters": [
|
|
8900
|
+
{
|
|
8901
|
+
"name": "scope",
|
|
8902
|
+
"type": {
|
|
8903
|
+
"fqn": "constructs.Construct"
|
|
8904
|
+
}
|
|
8905
|
+
}
|
|
8906
|
+
],
|
|
8907
|
+
"returns": {
|
|
8908
|
+
"type": {
|
|
8909
|
+
"fqn": "aws-cdk-lib.aws_stepfunctions.Chain"
|
|
8910
|
+
}
|
|
8911
|
+
}
|
|
8912
|
+
},
|
|
8913
|
+
{
|
|
8914
|
+
"docs": {
|
|
8915
|
+
"stability": "experimental",
|
|
8916
|
+
"summary": "Generate IAM statements that can be used by other resources to access the storage."
|
|
8917
|
+
},
|
|
8918
|
+
"locationInModule": {
|
|
8919
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
8920
|
+
"line": 235
|
|
8921
|
+
},
|
|
8922
|
+
"name": "generateAdapterIAMPolicies",
|
|
8923
|
+
"overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IAdapter",
|
|
8924
|
+
"parameters": [
|
|
8925
|
+
{
|
|
8926
|
+
"name": "additionalIAMActions",
|
|
8927
|
+
"optional": true,
|
|
8928
|
+
"type": {
|
|
8929
|
+
"collection": {
|
|
8930
|
+
"elementtype": {
|
|
8931
|
+
"primitive": "string"
|
|
8932
|
+
},
|
|
8933
|
+
"kind": "array"
|
|
8934
|
+
}
|
|
8935
|
+
}
|
|
8936
|
+
},
|
|
8937
|
+
{
|
|
8938
|
+
"name": "narrowActions",
|
|
8939
|
+
"optional": true,
|
|
8940
|
+
"type": {
|
|
8941
|
+
"primitive": "boolean"
|
|
8942
|
+
}
|
|
8943
|
+
}
|
|
8944
|
+
],
|
|
8945
|
+
"returns": {
|
|
8946
|
+
"type": {
|
|
8947
|
+
"collection": {
|
|
8948
|
+
"elementtype": {
|
|
8949
|
+
"fqn": "aws-cdk-lib.aws_iam.PolicyStatement"
|
|
8950
|
+
},
|
|
8951
|
+
"kind": "array"
|
|
8952
|
+
}
|
|
8953
|
+
}
|
|
8954
|
+
}
|
|
8955
|
+
},
|
|
8956
|
+
{
|
|
8957
|
+
"docs": {
|
|
8958
|
+
"stability": "experimental",
|
|
8959
|
+
"summary": "Initializes the adapter."
|
|
8960
|
+
},
|
|
8961
|
+
"locationInModule": {
|
|
8962
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
8963
|
+
"line": 101
|
|
8964
|
+
},
|
|
8965
|
+
"name": "init",
|
|
8966
|
+
"overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IAdapter",
|
|
8967
|
+
"parameters": [
|
|
8968
|
+
{
|
|
8969
|
+
"name": "scope",
|
|
8970
|
+
"type": {
|
|
8971
|
+
"fqn": "constructs.Construct"
|
|
8972
|
+
}
|
|
8973
|
+
},
|
|
8974
|
+
{
|
|
8975
|
+
"name": "props",
|
|
8976
|
+
"type": {
|
|
8977
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessingProps"
|
|
8978
|
+
}
|
|
8979
|
+
}
|
|
8980
|
+
]
|
|
8981
|
+
}
|
|
8982
|
+
],
|
|
8983
|
+
"name": "QueuedS3Adapter",
|
|
8984
|
+
"symbolId": "use-cases/document-processing/adapter/queued-s3-adapter:QueuedS3Adapter"
|
|
8985
|
+
},
|
|
8986
|
+
"@cdklabs/cdk-appmod-catalog-blueprints.QueuedS3AdapterProps": {
|
|
8987
|
+
"assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
|
|
8988
|
+
"datatype": true,
|
|
8989
|
+
"docs": {
|
|
8990
|
+
"stability": "experimental",
|
|
8991
|
+
"summary": "Props for the Queued S3 Adapter."
|
|
8992
|
+
},
|
|
8993
|
+
"fqn": "@cdklabs/cdk-appmod-catalog-blueprints.QueuedS3AdapterProps",
|
|
8994
|
+
"kind": "interface",
|
|
8995
|
+
"locationInModule": {
|
|
8996
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
8997
|
+
"line": 36
|
|
8998
|
+
},
|
|
8999
|
+
"name": "QueuedS3AdapterProps",
|
|
9000
|
+
"properties": [
|
|
9001
|
+
{
|
|
9002
|
+
"abstract": true,
|
|
9003
|
+
"docs": {
|
|
9004
|
+
"default": "create a new bucket",
|
|
9005
|
+
"remarks": "If not provided, a new bucket will be created with auto-delete enabled based on removalPolicy.",
|
|
9006
|
+
"stability": "experimental",
|
|
9007
|
+
"summary": "S3 bucket for document storage with organized prefixes (raw/, processed/, failed/)."
|
|
9008
|
+
},
|
|
9009
|
+
"immutable": true,
|
|
9010
|
+
"locationInModule": {
|
|
9011
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
9012
|
+
"line": 43
|
|
9013
|
+
},
|
|
9014
|
+
"name": "bucket",
|
|
9015
|
+
"optional": true,
|
|
9016
|
+
"type": {
|
|
9017
|
+
"fqn": "aws-cdk-lib.aws_s3.Bucket"
|
|
9018
|
+
}
|
|
9019
|
+
},
|
|
9020
|
+
{
|
|
9021
|
+
"abstract": true,
|
|
9022
|
+
"docs": {
|
|
9023
|
+
"default": "5",
|
|
9024
|
+
"stability": "experimental",
|
|
9025
|
+
"summary": "The number of times a message can be unsuccessfully dequeued before being moved to the dead-letter queue."
|
|
9026
|
+
},
|
|
9027
|
+
"immutable": true,
|
|
9028
|
+
"locationInModule": {
|
|
9029
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
9030
|
+
"line": 79
|
|
9031
|
+
},
|
|
9032
|
+
"name": "dlqMaxReceiveCount",
|
|
9033
|
+
"optional": true,
|
|
9034
|
+
"type": {
|
|
9035
|
+
"primitive": "number"
|
|
9036
|
+
}
|
|
9037
|
+
},
|
|
9038
|
+
{
|
|
9039
|
+
"abstract": true,
|
|
9040
|
+
"docs": {
|
|
9041
|
+
"default": "\"failed/\"",
|
|
9042
|
+
"stability": "experimental",
|
|
9043
|
+
"summary": "S3 prefix where the files that failed processing would be stored."
|
|
9044
|
+
},
|
|
9045
|
+
"immutable": true,
|
|
9046
|
+
"locationInModule": {
|
|
9047
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
9048
|
+
"line": 65
|
|
9049
|
+
},
|
|
9050
|
+
"name": "failedPrefix",
|
|
9051
|
+
"optional": true,
|
|
9052
|
+
"type": {
|
|
9053
|
+
"primitive": "string"
|
|
9054
|
+
}
|
|
9055
|
+
},
|
|
9056
|
+
{
|
|
9057
|
+
"abstract": true,
|
|
9058
|
+
"docs": {
|
|
9059
|
+
"default": "\"processed/\"",
|
|
9060
|
+
"stability": "experimental",
|
|
9061
|
+
"summary": "S3 prefix where the processed files would be stored."
|
|
9062
|
+
},
|
|
9063
|
+
"immutable": true,
|
|
9064
|
+
"locationInModule": {
|
|
9065
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
9066
|
+
"line": 58
|
|
9067
|
+
},
|
|
9068
|
+
"name": "processedPrefix",
|
|
9069
|
+
"optional": true,
|
|
9070
|
+
"type": {
|
|
9071
|
+
"primitive": "string"
|
|
9072
|
+
}
|
|
9073
|
+
},
|
|
9074
|
+
{
|
|
9075
|
+
"abstract": true,
|
|
9076
|
+
"docs": {
|
|
9077
|
+
"default": "Duration.seconds(300)",
|
|
9078
|
+
"remarks": "Should be longer than expected processing time to prevent duplicate processing.",
|
|
9079
|
+
"stability": "experimental",
|
|
9080
|
+
"summary": "SQS queue visibility timeout for processing messages."
|
|
9081
|
+
},
|
|
9082
|
+
"immutable": true,
|
|
9083
|
+
"locationInModule": {
|
|
9084
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
9085
|
+
"line": 72
|
|
9086
|
+
},
|
|
9087
|
+
"name": "queueVisibilityTimeout",
|
|
9088
|
+
"optional": true,
|
|
9089
|
+
"type": {
|
|
9090
|
+
"fqn": "aws-cdk-lib.Duration"
|
|
9091
|
+
}
|
|
9092
|
+
},
|
|
9093
|
+
{
|
|
9094
|
+
"abstract": true,
|
|
9095
|
+
"docs": {
|
|
9096
|
+
"default": "\"raw/\"",
|
|
9097
|
+
"remarks": "This serves as the trigger point for processing",
|
|
9098
|
+
"stability": "experimental",
|
|
9099
|
+
"summary": "S3 prefix where the raw files would be stored."
|
|
9100
|
+
},
|
|
9101
|
+
"immutable": true,
|
|
9102
|
+
"locationInModule": {
|
|
9103
|
+
"filename": "use-cases/document-processing/adapter/queued-s3-adapter.ts",
|
|
9104
|
+
"line": 51
|
|
9105
|
+
},
|
|
9106
|
+
"name": "rawPrefix",
|
|
9107
|
+
"optional": true,
|
|
9108
|
+
"type": {
|
|
9109
|
+
"primitive": "string"
|
|
9110
|
+
}
|
|
9111
|
+
}
|
|
9112
|
+
],
|
|
9113
|
+
"symbolId": "use-cases/document-processing/adapter/queued-s3-adapter:QueuedS3AdapterProps"
|
|
9114
|
+
},
|
|
8542
9115
|
"@cdklabs/cdk-appmod-catalog-blueprints.StateMachineObservabilityPropertyInjector": {
|
|
8543
9116
|
"assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
|
|
8544
9117
|
"docs": {
|
|
@@ -8639,6 +9212,6 @@
|
|
|
8639
9212
|
"symbolId": "use-cases/utilities/observability/state-machine-observability-property-injector:StateMachineObservabilityPropertyInjector"
|
|
8640
9213
|
}
|
|
8641
9214
|
},
|
|
8642
|
-
"version": "1.
|
|
8643
|
-
"fingerprint": "
|
|
9215
|
+
"version": "1.1.0",
|
|
9216
|
+
"fingerprint": "zfqS1n+LPURp+7keFQkZ+63D7NpsC6whGHVNGTWOIds="
|
|
8644
9217
|
}
|