@aws-solutions-constructs/core 2.26.0 → 2.28.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 +202 -59
- package/lib/fargate-helper.d.ts +1 -0
- package/lib/fargate-helper.js +8 -2
- package/lib/input-validation.d.ts +2 -0
- package/lib/input-validation.js +21 -2
- package/lib/sns-helper.d.ts +6 -6
- package/lib/sns-helper.js +13 -13
- package/lib/sqs-helper.d.ts +7 -7
- package/lib/sqs-helper.js +17 -11
- package/package.json +4 -4
- package/test/input-validation.test.js +73 -1
- package/test/sns-helper.test.js +66 -1
- package/test/sqs-helper.test.js +3 -3
package/.jsii
CHANGED
|
@@ -13,10 +13,88 @@
|
|
|
13
13
|
"npmlog": "^4.1.2"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"aws-cdk-lib": "^2.
|
|
16
|
+
"aws-cdk-lib": "^2.53.0",
|
|
17
17
|
"constructs": "^10.0.0"
|
|
18
18
|
},
|
|
19
19
|
"dependencyClosure": {
|
|
20
|
+
"@aws-cdk/asset-awscli-v1": {
|
|
21
|
+
"targets": {
|
|
22
|
+
"dotnet": {
|
|
23
|
+
"namespace": "Amazon.CDK.Asset.AwsCliV1",
|
|
24
|
+
"packageId": "Amazon.CDK.Asset.AwsCliV1"
|
|
25
|
+
},
|
|
26
|
+
"go": {
|
|
27
|
+
"moduleName": "github.com/cdklabs/awscdk-asset-awscli-go",
|
|
28
|
+
"packageName": "awscliv1"
|
|
29
|
+
},
|
|
30
|
+
"java": {
|
|
31
|
+
"maven": {
|
|
32
|
+
"artifactId": "cdk-asset-awscli-v1",
|
|
33
|
+
"groupId": "software.amazon.awscdk"
|
|
34
|
+
},
|
|
35
|
+
"package": "software.amazon.awscdk.cdk.asset.awscli.v1"
|
|
36
|
+
},
|
|
37
|
+
"js": {
|
|
38
|
+
"npm": "@aws-cdk/asset-awscli-v1"
|
|
39
|
+
},
|
|
40
|
+
"python": {
|
|
41
|
+
"distName": "aws-cdk.asset-awscli-v1",
|
|
42
|
+
"module": "aws_cdk.asset_awscli_v1"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"@aws-cdk/asset-kubectl-v20": {
|
|
47
|
+
"targets": {
|
|
48
|
+
"dotnet": {
|
|
49
|
+
"namespace": "Amazon.CDK.Asset.KubectlV20",
|
|
50
|
+
"packageId": "Amazon.CDK.Asset.KubectlV20"
|
|
51
|
+
},
|
|
52
|
+
"go": {
|
|
53
|
+
"moduleName": "github.com/cdklabs/awscdk-asset-kubectl-go",
|
|
54
|
+
"packageName": "kubectlv20"
|
|
55
|
+
},
|
|
56
|
+
"java": {
|
|
57
|
+
"maven": {
|
|
58
|
+
"artifactId": "cdk-asset-kubectl-v20",
|
|
59
|
+
"groupId": "software.amazon.awscdk"
|
|
60
|
+
},
|
|
61
|
+
"package": "software.amazon.awscdk.cdk.asset.kubectl.v20"
|
|
62
|
+
},
|
|
63
|
+
"js": {
|
|
64
|
+
"npm": "@aws-cdk/asset-kubectl-v20"
|
|
65
|
+
},
|
|
66
|
+
"python": {
|
|
67
|
+
"distName": "aws-cdk.asset-kubectl-v20",
|
|
68
|
+
"module": "aws_cdk.asset_kubectl_v20"
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"@aws-cdk/asset-node-proxy-agent-v5": {
|
|
73
|
+
"targets": {
|
|
74
|
+
"dotnet": {
|
|
75
|
+
"namespace": "Amazon.CDK.Asset.NodeProxyAgentV5",
|
|
76
|
+
"packageId": "Amazon.CDK.Asset.NodeProxyAgentV5"
|
|
77
|
+
},
|
|
78
|
+
"go": {
|
|
79
|
+
"moduleName": "github.com/cdklabs/awscdk-asset-node-proxy-agent-go",
|
|
80
|
+
"packageName": "nodeproxyagentv5"
|
|
81
|
+
},
|
|
82
|
+
"java": {
|
|
83
|
+
"maven": {
|
|
84
|
+
"artifactId": "cdk-asset-node-proxy-agent-v5",
|
|
85
|
+
"groupId": "software.amazon.awscdk"
|
|
86
|
+
},
|
|
87
|
+
"package": "software.amazon.awscdk.cdk.asset.node.proxy.agent.v5"
|
|
88
|
+
},
|
|
89
|
+
"js": {
|
|
90
|
+
"npm": "@aws-cdk/asset-node-proxy-agent-v5"
|
|
91
|
+
},
|
|
92
|
+
"python": {
|
|
93
|
+
"distName": "aws-cdk.asset-node-proxy-agent-v5",
|
|
94
|
+
"module": "aws_cdk.asset_node_proxy_agent_v5"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
},
|
|
20
98
|
"aws-cdk-lib": {
|
|
21
99
|
"submodules": {
|
|
22
100
|
"aws-cdk-lib.alexa_ask": {
|
|
@@ -1411,6 +1489,19 @@
|
|
|
1411
1489
|
}
|
|
1412
1490
|
}
|
|
1413
1491
|
},
|
|
1492
|
+
"aws-cdk-lib.aws_identitystore": {
|
|
1493
|
+
"targets": {
|
|
1494
|
+
"dotnet": {
|
|
1495
|
+
"namespace": "Amazon.CDK.AWS.IdentityStore"
|
|
1496
|
+
},
|
|
1497
|
+
"java": {
|
|
1498
|
+
"package": "software.amazon.awscdk.services.identitystore"
|
|
1499
|
+
},
|
|
1500
|
+
"python": {
|
|
1501
|
+
"module": "aws_cdk.aws_identitystore"
|
|
1502
|
+
}
|
|
1503
|
+
}
|
|
1504
|
+
},
|
|
1414
1505
|
"aws-cdk-lib.aws_imagebuilder": {
|
|
1415
1506
|
"targets": {
|
|
1416
1507
|
"dotnet": {
|
|
@@ -2139,6 +2230,19 @@
|
|
|
2139
2230
|
}
|
|
2140
2231
|
}
|
|
2141
2232
|
},
|
|
2233
|
+
"aws-cdk-lib.aws_organizations": {
|
|
2234
|
+
"targets": {
|
|
2235
|
+
"dotnet": {
|
|
2236
|
+
"namespace": "Amazon.CDK.AWS.Organizations"
|
|
2237
|
+
},
|
|
2238
|
+
"java": {
|
|
2239
|
+
"package": "software.amazon.awscdk.services.organizations"
|
|
2240
|
+
},
|
|
2241
|
+
"python": {
|
|
2242
|
+
"module": "aws_cdk.aws_organizations"
|
|
2243
|
+
}
|
|
2244
|
+
}
|
|
2245
|
+
},
|
|
2142
2246
|
"aws-cdk-lib.aws_panorama": {
|
|
2143
2247
|
"targets": {
|
|
2144
2248
|
"dotnet": {
|
|
@@ -2308,6 +2412,19 @@
|
|
|
2308
2412
|
}
|
|
2309
2413
|
}
|
|
2310
2414
|
},
|
|
2415
|
+
"aws-cdk-lib.aws_resourceexplorer2": {
|
|
2416
|
+
"targets": {
|
|
2417
|
+
"dotnet": {
|
|
2418
|
+
"namespace": "Amazon.CDK.AWS.ResourceExplorer2"
|
|
2419
|
+
},
|
|
2420
|
+
"java": {
|
|
2421
|
+
"package": "software.amazon.awscdk.services.resourceexplorer2"
|
|
2422
|
+
},
|
|
2423
|
+
"python": {
|
|
2424
|
+
"module": "aws_cdk.aws_resourceexplorer2"
|
|
2425
|
+
}
|
|
2426
|
+
}
|
|
2427
|
+
},
|
|
2311
2428
|
"aws-cdk-lib.aws_resourcegroups": {
|
|
2312
2429
|
"targets": {
|
|
2313
2430
|
"dotnet": {
|
|
@@ -2542,6 +2659,19 @@
|
|
|
2542
2659
|
}
|
|
2543
2660
|
}
|
|
2544
2661
|
},
|
|
2662
|
+
"aws-cdk-lib.aws_scheduler": {
|
|
2663
|
+
"targets": {
|
|
2664
|
+
"dotnet": {
|
|
2665
|
+
"namespace": "Amazon.CDK.AWS.Scheduler"
|
|
2666
|
+
},
|
|
2667
|
+
"java": {
|
|
2668
|
+
"package": "software.amazon.awscdk.services.scheduler"
|
|
2669
|
+
},
|
|
2670
|
+
"python": {
|
|
2671
|
+
"module": "aws_cdk.aws_scheduler"
|
|
2672
|
+
}
|
|
2673
|
+
}
|
|
2674
|
+
},
|
|
2545
2675
|
"aws-cdk-lib.aws_sdb": {
|
|
2546
2676
|
"targets": {
|
|
2547
2677
|
"dotnet": {
|
|
@@ -3104,7 +3234,7 @@
|
|
|
3104
3234
|
},
|
|
3105
3235
|
"description": "Core CDK Construct for patterns library",
|
|
3106
3236
|
"homepage": "https://github.com/awslabs/aws-solutions-constructs.git",
|
|
3107
|
-
"jsiiVersion": "1.
|
|
3237
|
+
"jsiiVersion": "1.71.0 (build f1f58ae)",
|
|
3108
3238
|
"license": "Apache-2.0",
|
|
3109
3239
|
"metadata": {
|
|
3110
3240
|
"jsii": {
|
|
@@ -3323,7 +3453,7 @@
|
|
|
3323
3453
|
"kind": "interface",
|
|
3324
3454
|
"locationInModule": {
|
|
3325
3455
|
"filename": "lib/sqs-helper.ts",
|
|
3326
|
-
"line":
|
|
3456
|
+
"line": 113
|
|
3327
3457
|
},
|
|
3328
3458
|
"name": "BuildDeadLetterQueueProps",
|
|
3329
3459
|
"properties": [
|
|
@@ -3336,7 +3466,7 @@
|
|
|
3336
3466
|
"immutable": true,
|
|
3337
3467
|
"locationInModule": {
|
|
3338
3468
|
"filename": "lib/sqs-helper.ts",
|
|
3339
|
-
"line":
|
|
3469
|
+
"line": 131
|
|
3340
3470
|
},
|
|
3341
3471
|
"name": "deadLetterQueueProps",
|
|
3342
3472
|
"optional": true,
|
|
@@ -3353,7 +3483,7 @@
|
|
|
3353
3483
|
"immutable": true,
|
|
3354
3484
|
"locationInModule": {
|
|
3355
3485
|
"filename": "lib/sqs-helper.ts",
|
|
3356
|
-
"line":
|
|
3486
|
+
"line": 125
|
|
3357
3487
|
},
|
|
3358
3488
|
"name": "deployDeadLetterQueue",
|
|
3359
3489
|
"optional": true,
|
|
@@ -3370,7 +3500,7 @@
|
|
|
3370
3500
|
"immutable": true,
|
|
3371
3501
|
"locationInModule": {
|
|
3372
3502
|
"filename": "lib/sqs-helper.ts",
|
|
3373
|
-
"line":
|
|
3503
|
+
"line": 119
|
|
3374
3504
|
},
|
|
3375
3505
|
"name": "existingQueueObj",
|
|
3376
3506
|
"optional": true,
|
|
@@ -3387,7 +3517,7 @@
|
|
|
3387
3517
|
"immutable": true,
|
|
3388
3518
|
"locationInModule": {
|
|
3389
3519
|
"filename": "lib/sqs-helper.ts",
|
|
3390
|
-
"line":
|
|
3520
|
+
"line": 137
|
|
3391
3521
|
},
|
|
3392
3522
|
"name": "maxReceiveCount",
|
|
3393
3523
|
"optional": true,
|
|
@@ -4100,9 +4230,9 @@
|
|
|
4100
4230
|
{
|
|
4101
4231
|
"abstract": true,
|
|
4102
4232
|
"docs": {
|
|
4103
|
-
"default": "-
|
|
4104
|
-
"remarks": "
|
|
4105
|
-
"summary": "
|
|
4233
|
+
"default": "- False if queueProps.encryptionMasterKey, encryptionKey, and encryptionKeyProps are all undefined.",
|
|
4234
|
+
"remarks": "This flag is ignored if any of the following are defined: queueProps.encryptionMasterKey, encryptionKey or encryptionKeyProps.",
|
|
4235
|
+
"summary": "If no key is provided, this flag determines whether the queue is encrypted with a new CMK or an AWS managed key."
|
|
4106
4236
|
},
|
|
4107
4237
|
"immutable": true,
|
|
4108
4238
|
"locationInModule": {
|
|
@@ -4118,8 +4248,8 @@
|
|
|
4118
4248
|
{
|
|
4119
4249
|
"abstract": true,
|
|
4120
4250
|
"docs": {
|
|
4121
|
-
"default": "-
|
|
4122
|
-
"summary": "An optional, imported encryption key to encrypt the SQS
|
|
4251
|
+
"default": "- None",
|
|
4252
|
+
"summary": "An optional, imported encryption key to encrypt the SQS Queue with."
|
|
4123
4253
|
},
|
|
4124
4254
|
"immutable": true,
|
|
4125
4255
|
"locationInModule": {
|
|
@@ -4135,8 +4265,8 @@
|
|
|
4135
4265
|
{
|
|
4136
4266
|
"abstract": true,
|
|
4137
4267
|
"docs": {
|
|
4138
|
-
"default": "-
|
|
4139
|
-
"summary": "Optional user
|
|
4268
|
+
"default": "- None",
|
|
4269
|
+
"summary": "Optional user provided properties to override the default properties for the KMS encryption key used to encrypt the SQS Queue with."
|
|
4140
4270
|
},
|
|
4141
4271
|
"immutable": true,
|
|
4142
4272
|
"locationInModule": {
|
|
@@ -4447,9 +4577,9 @@
|
|
|
4447
4577
|
{
|
|
4448
4578
|
"abstract": true,
|
|
4449
4579
|
"docs": {
|
|
4450
|
-
"default": "-
|
|
4451
|
-
"remarks": "
|
|
4452
|
-
"summary": "
|
|
4580
|
+
"default": "- False if topicProps.masterKey, encryptionKey, and encryptionKeyProps are all undefined.",
|
|
4581
|
+
"remarks": "This flag is ignored if any of the following are defined: topicProps.masterKey, encryptionKey or encryptionKeyProps.",
|
|
4582
|
+
"summary": "If no key is provided, this flag determines whether the topic is encrypted with a new CMK or an AWS managed key."
|
|
4453
4583
|
},
|
|
4454
4584
|
"immutable": true,
|
|
4455
4585
|
"locationInModule": {
|
|
@@ -4465,7 +4595,7 @@
|
|
|
4465
4595
|
{
|
|
4466
4596
|
"abstract": true,
|
|
4467
4597
|
"docs": {
|
|
4468
|
-
"default": "-
|
|
4598
|
+
"default": "- None",
|
|
4469
4599
|
"summary": "An optional, imported encryption key to encrypt the SNS topic with."
|
|
4470
4600
|
},
|
|
4471
4601
|
"immutable": true,
|
|
@@ -4482,8 +4612,8 @@
|
|
|
4482
4612
|
{
|
|
4483
4613
|
"abstract": true,
|
|
4484
4614
|
"docs": {
|
|
4485
|
-
"default": "-
|
|
4486
|
-
"summary": "Optional user
|
|
4615
|
+
"default": "- None",
|
|
4616
|
+
"summary": "Optional user provided properties to override the default properties for the KMS encryption key used to encrypt the SNS topic with."
|
|
4487
4617
|
},
|
|
4488
4618
|
"immutable": true,
|
|
4489
4619
|
"locationInModule": {
|
|
@@ -5084,7 +5214,7 @@
|
|
|
5084
5214
|
"kind": "interface",
|
|
5085
5215
|
"locationInModule": {
|
|
5086
5216
|
"filename": "lib/input-validation.ts",
|
|
5087
|
-
"line":
|
|
5217
|
+
"line": 29
|
|
5088
5218
|
},
|
|
5089
5219
|
"name": "VerifiedProps",
|
|
5090
5220
|
"properties": [
|
|
@@ -5093,7 +5223,7 @@
|
|
|
5093
5223
|
"immutable": true,
|
|
5094
5224
|
"locationInModule": {
|
|
5095
5225
|
"filename": "lib/input-validation.ts",
|
|
5096
|
-
"line":
|
|
5226
|
+
"line": 75
|
|
5097
5227
|
},
|
|
5098
5228
|
"name": "albLoggingBucketProps",
|
|
5099
5229
|
"optional": true,
|
|
@@ -5106,7 +5236,7 @@
|
|
|
5106
5236
|
"immutable": true,
|
|
5107
5237
|
"locationInModule": {
|
|
5108
5238
|
"filename": "lib/input-validation.ts",
|
|
5109
|
-
"line":
|
|
5239
|
+
"line": 50
|
|
5110
5240
|
},
|
|
5111
5241
|
"name": "bucketProps",
|
|
5112
5242
|
"optional": true,
|
|
@@ -5119,7 +5249,7 @@
|
|
|
5119
5249
|
"immutable": true,
|
|
5120
5250
|
"locationInModule": {
|
|
5121
5251
|
"filename": "lib/input-validation.ts",
|
|
5122
|
-
"line":
|
|
5252
|
+
"line": 43
|
|
5123
5253
|
},
|
|
5124
5254
|
"name": "deadLetterQueueProps",
|
|
5125
5255
|
"optional": true,
|
|
@@ -5132,7 +5262,7 @@
|
|
|
5132
5262
|
"immutable": true,
|
|
5133
5263
|
"locationInModule": {
|
|
5134
5264
|
"filename": "lib/input-validation.ts",
|
|
5135
|
-
"line":
|
|
5265
|
+
"line": 42
|
|
5136
5266
|
},
|
|
5137
5267
|
"name": "deployDeadLetterQueue",
|
|
5138
5268
|
"optional": true,
|
|
@@ -5145,7 +5275,7 @@
|
|
|
5145
5275
|
"immutable": true,
|
|
5146
5276
|
"locationInModule": {
|
|
5147
5277
|
"filename": "lib/input-validation.ts",
|
|
5148
|
-
"line":
|
|
5278
|
+
"line": 66
|
|
5149
5279
|
},
|
|
5150
5280
|
"name": "deployVpc",
|
|
5151
5281
|
"optional": true,
|
|
@@ -5158,7 +5288,7 @@
|
|
|
5158
5288
|
"immutable": true,
|
|
5159
5289
|
"locationInModule": {
|
|
5160
5290
|
"filename": "lib/input-validation.ts",
|
|
5161
|
-
"line":
|
|
5291
|
+
"line": 30
|
|
5162
5292
|
},
|
|
5163
5293
|
"name": "dynamoTableProps",
|
|
5164
5294
|
"optional": true,
|
|
@@ -5171,7 +5301,7 @@
|
|
|
5171
5301
|
"immutable": true,
|
|
5172
5302
|
"locationInModule": {
|
|
5173
5303
|
"filename": "lib/input-validation.ts",
|
|
5174
|
-
"line":
|
|
5304
|
+
"line": 68
|
|
5175
5305
|
},
|
|
5176
5306
|
"name": "encryptionKey",
|
|
5177
5307
|
"optional": true,
|
|
@@ -5184,7 +5314,7 @@
|
|
|
5184
5314
|
"immutable": true,
|
|
5185
5315
|
"locationInModule": {
|
|
5186
5316
|
"filename": "lib/input-validation.ts",
|
|
5187
|
-
"line":
|
|
5317
|
+
"line": 69
|
|
5188
5318
|
},
|
|
5189
5319
|
"name": "encryptionKeyProps",
|
|
5190
5320
|
"optional": true,
|
|
@@ -5197,7 +5327,7 @@
|
|
|
5197
5327
|
"immutable": true,
|
|
5198
5328
|
"locationInModule": {
|
|
5199
5329
|
"filename": "lib/input-validation.ts",
|
|
5200
|
-
"line":
|
|
5330
|
+
"line": 59
|
|
5201
5331
|
},
|
|
5202
5332
|
"name": "endpointProps",
|
|
5203
5333
|
"optional": true,
|
|
@@ -5210,7 +5340,7 @@
|
|
|
5210
5340
|
"immutable": true,
|
|
5211
5341
|
"locationInModule": {
|
|
5212
5342
|
"filename": "lib/input-validation.ts",
|
|
5213
|
-
"line":
|
|
5343
|
+
"line": 49
|
|
5214
5344
|
},
|
|
5215
5345
|
"name": "existingBucketInterface",
|
|
5216
5346
|
"optional": true,
|
|
@@ -5223,7 +5353,7 @@
|
|
|
5223
5353
|
"immutable": true,
|
|
5224
5354
|
"locationInModule": {
|
|
5225
5355
|
"filename": "lib/input-validation.ts",
|
|
5226
|
-
"line":
|
|
5356
|
+
"line": 48
|
|
5227
5357
|
},
|
|
5228
5358
|
"name": "existingBucketObj",
|
|
5229
5359
|
"optional": true,
|
|
@@ -5236,7 +5366,7 @@
|
|
|
5236
5366
|
"immutable": true,
|
|
5237
5367
|
"locationInModule": {
|
|
5238
5368
|
"filename": "lib/input-validation.ts",
|
|
5239
|
-
"line":
|
|
5369
|
+
"line": 56
|
|
5240
5370
|
},
|
|
5241
5371
|
"name": "existingGlueJob",
|
|
5242
5372
|
"optional": true,
|
|
@@ -5249,7 +5379,7 @@
|
|
|
5249
5379
|
"immutable": true,
|
|
5250
5380
|
"locationInModule": {
|
|
5251
5381
|
"filename": "lib/input-validation.ts",
|
|
5252
|
-
"line":
|
|
5382
|
+
"line": 37
|
|
5253
5383
|
},
|
|
5254
5384
|
"name": "existingLambdaObj",
|
|
5255
5385
|
"optional": true,
|
|
@@ -5262,7 +5392,7 @@
|
|
|
5262
5392
|
"immutable": true,
|
|
5263
5393
|
"locationInModule": {
|
|
5264
5394
|
"filename": "lib/input-validation.ts",
|
|
5265
|
-
"line":
|
|
5395
|
+
"line": 72
|
|
5266
5396
|
},
|
|
5267
5397
|
"name": "existingLoadBalancerObj",
|
|
5268
5398
|
"optional": true,
|
|
@@ -5275,7 +5405,7 @@
|
|
|
5275
5405
|
"immutable": true,
|
|
5276
5406
|
"locationInModule": {
|
|
5277
5407
|
"filename": "lib/input-validation.ts",
|
|
5278
|
-
"line":
|
|
5408
|
+
"line": 77
|
|
5279
5409
|
},
|
|
5280
5410
|
"name": "existingLoggingBucketObj",
|
|
5281
5411
|
"optional": true,
|
|
@@ -5288,7 +5418,7 @@
|
|
|
5288
5418
|
"immutable": true,
|
|
5289
5419
|
"locationInModule": {
|
|
5290
5420
|
"filename": "lib/input-validation.ts",
|
|
5291
|
-
"line":
|
|
5421
|
+
"line": 45
|
|
5292
5422
|
},
|
|
5293
5423
|
"name": "existingMediaStoreContainerObj",
|
|
5294
5424
|
"optional": true,
|
|
@@ -5301,7 +5431,7 @@
|
|
|
5301
5431
|
"immutable": true,
|
|
5302
5432
|
"locationInModule": {
|
|
5303
5433
|
"filename": "lib/input-validation.ts",
|
|
5304
|
-
"line":
|
|
5434
|
+
"line": 40
|
|
5305
5435
|
},
|
|
5306
5436
|
"name": "existingQueueObj",
|
|
5307
5437
|
"optional": true,
|
|
@@ -5314,7 +5444,7 @@
|
|
|
5314
5444
|
"immutable": true,
|
|
5315
5445
|
"locationInModule": {
|
|
5316
5446
|
"filename": "lib/input-validation.ts",
|
|
5317
|
-
"line":
|
|
5447
|
+
"line": 58
|
|
5318
5448
|
},
|
|
5319
5449
|
"name": "existingSagemakerEndpointObj",
|
|
5320
5450
|
"optional": true,
|
|
@@ -5327,7 +5457,7 @@
|
|
|
5327
5457
|
"immutable": true,
|
|
5328
5458
|
"locationInModule": {
|
|
5329
5459
|
"filename": "lib/input-validation.ts",
|
|
5330
|
-
"line":
|
|
5460
|
+
"line": 61
|
|
5331
5461
|
},
|
|
5332
5462
|
"name": "existingSecretObj",
|
|
5333
5463
|
"optional": true,
|
|
@@ -5340,7 +5470,7 @@
|
|
|
5340
5470
|
"immutable": true,
|
|
5341
5471
|
"locationInModule": {
|
|
5342
5472
|
"filename": "lib/input-validation.ts",
|
|
5343
|
-
"line":
|
|
5473
|
+
"line": 34
|
|
5344
5474
|
},
|
|
5345
5475
|
"name": "existingStreamObj",
|
|
5346
5476
|
"optional": true,
|
|
@@ -5353,7 +5483,7 @@
|
|
|
5353
5483
|
"immutable": true,
|
|
5354
5484
|
"locationInModule": {
|
|
5355
5485
|
"filename": "lib/input-validation.ts",
|
|
5356
|
-
"line":
|
|
5486
|
+
"line": 32
|
|
5357
5487
|
},
|
|
5358
5488
|
"name": "existingTableInterface",
|
|
5359
5489
|
"optional": true,
|
|
@@ -5366,7 +5496,7 @@
|
|
|
5366
5496
|
"immutable": true,
|
|
5367
5497
|
"locationInModule": {
|
|
5368
5498
|
"filename": "lib/input-validation.ts",
|
|
5369
|
-
"line":
|
|
5499
|
+
"line": 31
|
|
5370
5500
|
},
|
|
5371
5501
|
"name": "existingTableObj",
|
|
5372
5502
|
"optional": true,
|
|
@@ -5379,7 +5509,7 @@
|
|
|
5379
5509
|
"immutable": true,
|
|
5380
5510
|
"locationInModule": {
|
|
5381
5511
|
"filename": "lib/input-validation.ts",
|
|
5382
|
-
"line":
|
|
5512
|
+
"line": 53
|
|
5383
5513
|
},
|
|
5384
5514
|
"name": "existingTopicObj",
|
|
5385
5515
|
"optional": true,
|
|
@@ -5392,7 +5522,7 @@
|
|
|
5392
5522
|
"immutable": true,
|
|
5393
5523
|
"locationInModule": {
|
|
5394
5524
|
"filename": "lib/input-validation.ts",
|
|
5395
|
-
"line":
|
|
5525
|
+
"line": 64
|
|
5396
5526
|
},
|
|
5397
5527
|
"name": "existingVpc",
|
|
5398
5528
|
"optional": true,
|
|
@@ -5405,7 +5535,7 @@
|
|
|
5405
5535
|
"immutable": true,
|
|
5406
5536
|
"locationInModule": {
|
|
5407
5537
|
"filename": "lib/input-validation.ts",
|
|
5408
|
-
"line":
|
|
5538
|
+
"line": 55
|
|
5409
5539
|
},
|
|
5410
5540
|
"name": "glueJobProps",
|
|
5411
5541
|
"optional": true,
|
|
@@ -5418,7 +5548,7 @@
|
|
|
5418
5548
|
"immutable": true,
|
|
5419
5549
|
"locationInModule": {
|
|
5420
5550
|
"filename": "lib/input-validation.ts",
|
|
5421
|
-
"line":
|
|
5551
|
+
"line": 35
|
|
5422
5552
|
},
|
|
5423
5553
|
"name": "kinesisStreamProps",
|
|
5424
5554
|
"optional": true,
|
|
@@ -5431,7 +5561,7 @@
|
|
|
5431
5561
|
"immutable": true,
|
|
5432
5562
|
"locationInModule": {
|
|
5433
5563
|
"filename": "lib/input-validation.ts",
|
|
5434
|
-
"line":
|
|
5564
|
+
"line": 38
|
|
5435
5565
|
},
|
|
5436
5566
|
"name": "lambdaFunctionProps",
|
|
5437
5567
|
"optional": true,
|
|
@@ -5444,7 +5574,7 @@
|
|
|
5444
5574
|
"immutable": true,
|
|
5445
5575
|
"locationInModule": {
|
|
5446
5576
|
"filename": "lib/input-validation.ts",
|
|
5447
|
-
"line":
|
|
5577
|
+
"line": 71
|
|
5448
5578
|
},
|
|
5449
5579
|
"name": "loadBalancerProps",
|
|
5450
5580
|
"optional": true,
|
|
@@ -5457,7 +5587,7 @@
|
|
|
5457
5587
|
"immutable": true,
|
|
5458
5588
|
"locationInModule": {
|
|
5459
5589
|
"filename": "lib/input-validation.ts",
|
|
5460
|
-
"line":
|
|
5590
|
+
"line": 74
|
|
5461
5591
|
},
|
|
5462
5592
|
"name": "logAlbAccessLogs",
|
|
5463
5593
|
"optional": true,
|
|
@@ -5470,7 +5600,7 @@
|
|
|
5470
5600
|
"immutable": true,
|
|
5471
5601
|
"locationInModule": {
|
|
5472
5602
|
"filename": "lib/input-validation.ts",
|
|
5473
|
-
"line":
|
|
5603
|
+
"line": 78
|
|
5474
5604
|
},
|
|
5475
5605
|
"name": "loggingBucketProps",
|
|
5476
5606
|
"optional": true,
|
|
@@ -5483,7 +5613,7 @@
|
|
|
5483
5613
|
"immutable": true,
|
|
5484
5614
|
"locationInModule": {
|
|
5485
5615
|
"filename": "lib/input-validation.ts",
|
|
5486
|
-
"line":
|
|
5616
|
+
"line": 79
|
|
5487
5617
|
},
|
|
5488
5618
|
"name": "logS3AccessLogs",
|
|
5489
5619
|
"optional": true,
|
|
@@ -5496,7 +5626,7 @@
|
|
|
5496
5626
|
"immutable": true,
|
|
5497
5627
|
"locationInModule": {
|
|
5498
5628
|
"filename": "lib/input-validation.ts",
|
|
5499
|
-
"line":
|
|
5629
|
+
"line": 46
|
|
5500
5630
|
},
|
|
5501
5631
|
"name": "mediaStoreContainerProps",
|
|
5502
5632
|
"optional": true,
|
|
@@ -5509,7 +5639,20 @@
|
|
|
5509
5639
|
"immutable": true,
|
|
5510
5640
|
"locationInModule": {
|
|
5511
5641
|
"filename": "lib/input-validation.ts",
|
|
5512
|
-
"line":
|
|
5642
|
+
"line": 81
|
|
5643
|
+
},
|
|
5644
|
+
"name": "openSearchDomainProps",
|
|
5645
|
+
"optional": true,
|
|
5646
|
+
"type": {
|
|
5647
|
+
"fqn": "aws-cdk-lib.aws_opensearchservice.CfnDomainProps"
|
|
5648
|
+
}
|
|
5649
|
+
},
|
|
5650
|
+
{
|
|
5651
|
+
"abstract": true,
|
|
5652
|
+
"immutable": true,
|
|
5653
|
+
"locationInModule": {
|
|
5654
|
+
"filename": "lib/input-validation.ts",
|
|
5655
|
+
"line": 41
|
|
5513
5656
|
},
|
|
5514
5657
|
"name": "queueProps",
|
|
5515
5658
|
"optional": true,
|
|
@@ -5522,7 +5665,7 @@
|
|
|
5522
5665
|
"immutable": true,
|
|
5523
5666
|
"locationInModule": {
|
|
5524
5667
|
"filename": "lib/input-validation.ts",
|
|
5525
|
-
"line":
|
|
5668
|
+
"line": 62
|
|
5526
5669
|
},
|
|
5527
5670
|
"name": "secretProps",
|
|
5528
5671
|
"optional": true,
|
|
@@ -5535,7 +5678,7 @@
|
|
|
5535
5678
|
"immutable": true,
|
|
5536
5679
|
"locationInModule": {
|
|
5537
5680
|
"filename": "lib/input-validation.ts",
|
|
5538
|
-
"line":
|
|
5681
|
+
"line": 52
|
|
5539
5682
|
},
|
|
5540
5683
|
"name": "topicProps",
|
|
5541
5684
|
"optional": true,
|
|
@@ -5548,7 +5691,7 @@
|
|
|
5548
5691
|
"immutable": true,
|
|
5549
5692
|
"locationInModule": {
|
|
5550
5693
|
"filename": "lib/input-validation.ts",
|
|
5551
|
-
"line":
|
|
5694
|
+
"line": 65
|
|
5552
5695
|
},
|
|
5553
5696
|
"name": "vpcProps",
|
|
5554
5697
|
"optional": true,
|
|
@@ -5560,6 +5703,6 @@
|
|
|
5560
5703
|
"symbolId": "lib/input-validation:VerifiedProps"
|
|
5561
5704
|
}
|
|
5562
5705
|
},
|
|
5563
|
-
"version": "2.
|
|
5564
|
-
"fingerprint": "
|
|
5706
|
+
"version": "2.28.0",
|
|
5707
|
+
"fingerprint": "lf0+4Bl1+ICPNCNCsyOQLnUS1SvoOY2OOghTtFYR7p4="
|
|
5565
5708
|
}
|
package/lib/fargate-helper.d.ts
CHANGED
|
@@ -15,3 +15,4 @@ import * as ec2 from "aws-cdk-lib/aws-ec2";
|
|
|
15
15
|
import * as ecs from "aws-cdk-lib/aws-ecs";
|
|
16
16
|
export declare function CreateFargateService(scope: Construct, id: string, constructVpc: ec2.IVpc, clientClusterProps?: ecs.ClusterProps, ecrRepositoryArn?: string, ecrImageVersion?: string, clientFargateTaskDefinitionProps?: ecs.FargateTaskDefinitionProps | any, clientContainerDefinitionProps?: ecs.ContainerDefinitionProps | any, clientFargateServiceProps?: ecs.FargateServiceProps | any): [ecs.FargateService, ecs.ContainerDefinition];
|
|
17
17
|
export declare function CheckFargateProps(props: any): void;
|
|
18
|
+
export declare function getServiceVpcSecurityGroupIds(service: ecs.FargateService): string[];
|