@btc-embedded/cdk-extensions 0.18.1 → 0.20.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 +929 -230
- package/API.md +992 -82
- package/CHANGELOG.md +18 -0
- package/lib/constructs/EventPipe.js +1 -1
- package/lib/constructs/S3Bucket.js +1 -1
- package/lib/constructs/SecureRestApi.js +1 -1
- package/lib/constructs/SecureRestApiV2.js +1 -1
- package/lib/extensions/ApiGatewayExtension.js +1 -1
- package/lib/extensions/ApplicationLoadBalancerExtension.js +1 -1
- package/lib/extensions/ApplicationLoadBalancerExtensionV2.d.ts +3 -10
- package/lib/extensions/ApplicationLoadBalancerExtensionV2.js +7 -38
- package/lib/extensions/CloudMapExtension.js +1 -1
- package/lib/extensions/DeactivatableServiceExtension.js +1 -1
- package/lib/extensions/DocumentDbAccessExtension.js +1 -1
- package/lib/extensions/DomainEventMessagingExtension.js +1 -1
- package/lib/extensions/EfsMountExtension.js +1 -1
- package/lib/extensions/ExtraContainerExtension.js +1 -1
- package/lib/extensions/HTTPApiExtension.js +1 -1
- package/lib/extensions/LogExtension.js +1 -1
- package/lib/extensions/ModifyContainerDefinitionExtension.js +1 -1
- package/lib/extensions/ModifyTaskDefinitionExtension.js +1 -1
- package/lib/extensions/OpenIdExtension.d.ts +20 -0
- package/lib/extensions/OpenIdExtension.js +52 -0
- package/lib/extensions/OpenTelemetryExtension.js +1 -1
- package/lib/extensions/PostgresDbAccessExtension.js +1 -1
- package/lib/extensions/SharedVolumeExtension.js +1 -1
- package/lib/extensions/TcpKeepAliveExtension.js +1 -1
- package/lib/extensions/index.d.ts +1 -0
- package/lib/extensions/index.js +2 -1
- package/lib/platform/ApiGateway.js +1 -1
- package/lib/platform/ApiGatewayVpcLink.js +2 -2
- package/lib/platform/ApplicationLoadBalancer.js +1 -1
- package/lib/platform/ApplicationLoadBalancerV2.d.ts +4 -0
- package/lib/platform/ApplicationLoadBalancerV2.js +14 -6
- package/lib/platform/BTCLogGroup.js +1 -1
- package/lib/platform/CognitoUserPool.d.ts +17 -0
- package/lib/platform/CognitoUserPool.js +25 -3
- package/lib/platform/DefaultUserPoolClients.js +1 -1
- package/lib/platform/DocumentDB.js +2 -2
- package/lib/platform/EcsCluster.d.ts +37 -0
- package/lib/platform/EcsCluster.js +87 -0
- package/lib/platform/EfsFileSystem.js +1 -1
- package/lib/platform/PrivateDnsNamespace.js +1 -1
- package/lib/platform/ResourceServer.js +1 -1
- package/lib/platform/Vpc.d.ts +4 -1
- package/lib/platform/Vpc.js +5 -2
- package/lib/platform/VpcV2.d.ts +34 -0
- package/lib/platform/VpcV2.js +59 -0
- package/lib/platform/index.d.ts +2 -0
- package/lib/platform/index.js +3 -1
- package/lib/utils/StackParameter.js +1 -1
- package/package.json +1 -1
package/.jsii
CHANGED
|
@@ -4620,6 +4620,83 @@
|
|
|
4620
4620
|
],
|
|
4621
4621
|
"symbolId": "src/platform/ApiGatewayVpcLink:ApiGatewayVpcLinkProps"
|
|
4622
4622
|
},
|
|
4623
|
+
"@btc-embedded/cdk-extensions.AppOpenIdParameters": {
|
|
4624
|
+
"assembly": "@btc-embedded/cdk-extensions",
|
|
4625
|
+
"datatype": true,
|
|
4626
|
+
"docs": {
|
|
4627
|
+
"stability": "experimental"
|
|
4628
|
+
},
|
|
4629
|
+
"fqn": "@btc-embedded/cdk-extensions.AppOpenIdParameters",
|
|
4630
|
+
"kind": "interface",
|
|
4631
|
+
"locationInModule": {
|
|
4632
|
+
"filename": "src/platform/CognitoUserPool.ts",
|
|
4633
|
+
"line": 70
|
|
4634
|
+
},
|
|
4635
|
+
"name": "AppOpenIdParameters",
|
|
4636
|
+
"properties": [
|
|
4637
|
+
{
|
|
4638
|
+
"abstract": true,
|
|
4639
|
+
"docs": {
|
|
4640
|
+
"stability": "experimental"
|
|
4641
|
+
},
|
|
4642
|
+
"immutable": true,
|
|
4643
|
+
"locationInModule": {
|
|
4644
|
+
"filename": "src/platform/CognitoUserPool.ts",
|
|
4645
|
+
"line": 72
|
|
4646
|
+
},
|
|
4647
|
+
"name": "clientId",
|
|
4648
|
+
"type": {
|
|
4649
|
+
"primitive": "string"
|
|
4650
|
+
}
|
|
4651
|
+
},
|
|
4652
|
+
{
|
|
4653
|
+
"abstract": true,
|
|
4654
|
+
"docs": {
|
|
4655
|
+
"stability": "experimental"
|
|
4656
|
+
},
|
|
4657
|
+
"immutable": true,
|
|
4658
|
+
"locationInModule": {
|
|
4659
|
+
"filename": "src/platform/CognitoUserPool.ts",
|
|
4660
|
+
"line": 71
|
|
4661
|
+
},
|
|
4662
|
+
"name": "issuerUrl",
|
|
4663
|
+
"type": {
|
|
4664
|
+
"primitive": "string"
|
|
4665
|
+
}
|
|
4666
|
+
},
|
|
4667
|
+
{
|
|
4668
|
+
"abstract": true,
|
|
4669
|
+
"docs": {
|
|
4670
|
+
"stability": "experimental"
|
|
4671
|
+
},
|
|
4672
|
+
"immutable": true,
|
|
4673
|
+
"locationInModule": {
|
|
4674
|
+
"filename": "src/platform/CognitoUserPool.ts",
|
|
4675
|
+
"line": 74
|
|
4676
|
+
},
|
|
4677
|
+
"name": "scope",
|
|
4678
|
+
"type": {
|
|
4679
|
+
"primitive": "string"
|
|
4680
|
+
}
|
|
4681
|
+
},
|
|
4682
|
+
{
|
|
4683
|
+
"abstract": true,
|
|
4684
|
+
"docs": {
|
|
4685
|
+
"stability": "experimental"
|
|
4686
|
+
},
|
|
4687
|
+
"immutable": true,
|
|
4688
|
+
"locationInModule": {
|
|
4689
|
+
"filename": "src/platform/CognitoUserPool.ts",
|
|
4690
|
+
"line": 73
|
|
4691
|
+
},
|
|
4692
|
+
"name": "secret",
|
|
4693
|
+
"type": {
|
|
4694
|
+
"fqn": "aws-cdk-lib.aws_secretsmanager.ISecret"
|
|
4695
|
+
}
|
|
4696
|
+
}
|
|
4697
|
+
],
|
|
4698
|
+
"symbolId": "src/platform/CognitoUserPool:AppOpenIdParameters"
|
|
4699
|
+
},
|
|
4623
4700
|
"@btc-embedded/cdk-extensions.ApplicationLoadBalancer": {
|
|
4624
4701
|
"assembly": "@btc-embedded/cdk-extensions",
|
|
4625
4702
|
"base": "constructs.Construct",
|
|
@@ -5027,7 +5104,7 @@
|
|
|
5027
5104
|
"kind": "interface",
|
|
5028
5105
|
"locationInModule": {
|
|
5029
5106
|
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5030
|
-
"line":
|
|
5107
|
+
"line": 12
|
|
5031
5108
|
},
|
|
5032
5109
|
"name": "ApplicationLoadBalancerExtensionPropsV2",
|
|
5033
5110
|
"properties": [
|
|
@@ -5039,73 +5116,12 @@
|
|
|
5039
5116
|
"immutable": true,
|
|
5040
5117
|
"locationInModule": {
|
|
5041
5118
|
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5042
|
-
"line":
|
|
5043
|
-
},
|
|
5044
|
-
"name": "clientScope",
|
|
5045
|
-
"type": {
|
|
5046
|
-
"primitive": "string"
|
|
5047
|
-
}
|
|
5048
|
-
},
|
|
5049
|
-
{
|
|
5050
|
-
"abstract": true,
|
|
5051
|
-
"docs": {
|
|
5052
|
-
"stability": "experimental"
|
|
5053
|
-
},
|
|
5054
|
-
"immutable": true,
|
|
5055
|
-
"locationInModule": {
|
|
5056
|
-
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5057
|
-
"line": 24
|
|
5058
|
-
},
|
|
5059
|
-
"name": "platformStackName",
|
|
5060
|
-
"type": {
|
|
5061
|
-
"primitive": "string"
|
|
5062
|
-
}
|
|
5063
|
-
},
|
|
5064
|
-
{
|
|
5065
|
-
"abstract": true,
|
|
5066
|
-
"docs": {
|
|
5067
|
-
"stability": "experimental"
|
|
5068
|
-
},
|
|
5069
|
-
"immutable": true,
|
|
5070
|
-
"locationInModule": {
|
|
5071
|
-
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5072
|
-
"line": 26
|
|
5073
|
-
},
|
|
5074
|
-
"name": "userPoolClientSecret",
|
|
5075
|
-
"type": {
|
|
5076
|
-
"primitive": "string"
|
|
5077
|
-
}
|
|
5078
|
-
},
|
|
5079
|
-
{
|
|
5080
|
-
"abstract": true,
|
|
5081
|
-
"docs": {
|
|
5082
|
-
"stability": "experimental"
|
|
5083
|
-
},
|
|
5084
|
-
"immutable": true,
|
|
5085
|
-
"locationInModule": {
|
|
5086
|
-
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5087
|
-
"line": 25
|
|
5088
|
-
},
|
|
5089
|
-
"name": "applicationLoadBalancer",
|
|
5090
|
-
"optional": true,
|
|
5091
|
-
"type": {
|
|
5092
|
-
"fqn": "@btc-embedded/cdk-extensions.IApplicationLoadBalancerV2"
|
|
5093
|
-
}
|
|
5094
|
-
},
|
|
5095
|
-
{
|
|
5096
|
-
"abstract": true,
|
|
5097
|
-
"docs": {
|
|
5098
|
-
"stability": "experimental"
|
|
5099
|
-
},
|
|
5100
|
-
"immutable": true,
|
|
5101
|
-
"locationInModule": {
|
|
5102
|
-
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5103
|
-
"line": 28
|
|
5119
|
+
"line": 14
|
|
5104
5120
|
},
|
|
5105
|
-
"name": "
|
|
5121
|
+
"name": "loadBalancer",
|
|
5106
5122
|
"optional": true,
|
|
5107
5123
|
"type": {
|
|
5108
|
-
"
|
|
5124
|
+
"fqn": "@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2"
|
|
5109
5125
|
}
|
|
5110
5126
|
},
|
|
5111
5127
|
{
|
|
@@ -5116,9 +5132,9 @@
|
|
|
5116
5132
|
"immutable": true,
|
|
5117
5133
|
"locationInModule": {
|
|
5118
5134
|
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5119
|
-
"line":
|
|
5135
|
+
"line": 13
|
|
5120
5136
|
},
|
|
5121
|
-
"name": "
|
|
5137
|
+
"name": "platformStackName",
|
|
5122
5138
|
"optional": true,
|
|
5123
5139
|
"type": {
|
|
5124
5140
|
"primitive": "string"
|
|
@@ -5140,7 +5156,7 @@
|
|
|
5140
5156
|
},
|
|
5141
5157
|
"locationInModule": {
|
|
5142
5158
|
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5143
|
-
"line":
|
|
5159
|
+
"line": 20
|
|
5144
5160
|
},
|
|
5145
5161
|
"parameters": [
|
|
5146
5162
|
{
|
|
@@ -5154,21 +5170,9 @@
|
|
|
5154
5170
|
"kind": "class",
|
|
5155
5171
|
"locationInModule": {
|
|
5156
5172
|
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5157
|
-
"line":
|
|
5173
|
+
"line": 17
|
|
5158
5174
|
},
|
|
5159
5175
|
"methods": [
|
|
5160
|
-
{
|
|
5161
|
-
"docs": {
|
|
5162
|
-
"stability": "experimental",
|
|
5163
|
-
"summary": "A hook that allows the extension to add hooks to other extensions that are registered."
|
|
5164
|
-
},
|
|
5165
|
-
"locationInModule": {
|
|
5166
|
-
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5167
|
-
"line": 75
|
|
5168
|
-
},
|
|
5169
|
-
"name": "addHooks",
|
|
5170
|
-
"overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension"
|
|
5171
|
-
},
|
|
5172
5176
|
{
|
|
5173
5177
|
"docs": {
|
|
5174
5178
|
"stability": "experimental",
|
|
@@ -5176,7 +5180,7 @@
|
|
|
5176
5180
|
},
|
|
5177
5181
|
"locationInModule": {
|
|
5178
5182
|
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5179
|
-
"line":
|
|
5183
|
+
"line": 36
|
|
5180
5184
|
},
|
|
5181
5185
|
"name": "modifyServiceProps",
|
|
5182
5186
|
"overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
|
|
@@ -5201,7 +5205,7 @@
|
|
|
5201
5205
|
},
|
|
5202
5206
|
"locationInModule": {
|
|
5203
5207
|
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5204
|
-
"line":
|
|
5208
|
+
"line": 32
|
|
5205
5209
|
},
|
|
5206
5210
|
"name": "prehook",
|
|
5207
5211
|
"overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
|
|
@@ -5228,7 +5232,7 @@
|
|
|
5228
5232
|
},
|
|
5229
5233
|
"locationInModule": {
|
|
5230
5234
|
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5231
|
-
"line":
|
|
5235
|
+
"line": 43
|
|
5232
5236
|
},
|
|
5233
5237
|
"name": "useService",
|
|
5234
5238
|
"overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
|
|
@@ -5252,34 +5256,6 @@
|
|
|
5252
5256
|
}
|
|
5253
5257
|
],
|
|
5254
5258
|
"name": "ApplicationLoadBalancerExtensionV2",
|
|
5255
|
-
"properties": [
|
|
5256
|
-
{
|
|
5257
|
-
"docs": {
|
|
5258
|
-
"stability": "experimental"
|
|
5259
|
-
},
|
|
5260
|
-
"locationInModule": {
|
|
5261
|
-
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5262
|
-
"line": 67
|
|
5263
|
-
},
|
|
5264
|
-
"name": "cognitoUserPool",
|
|
5265
|
-
"type": {
|
|
5266
|
-
"fqn": "@btc-embedded/cdk-extensions.ICognitoUserPool"
|
|
5267
|
-
}
|
|
5268
|
-
},
|
|
5269
|
-
{
|
|
5270
|
-
"docs": {
|
|
5271
|
-
"stability": "experimental"
|
|
5272
|
-
},
|
|
5273
|
-
"locationInModule": {
|
|
5274
|
-
"filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
|
|
5275
|
-
"line": 68
|
|
5276
|
-
},
|
|
5277
|
-
"name": "fqdn",
|
|
5278
|
-
"type": {
|
|
5279
|
-
"primitive": "string"
|
|
5280
|
-
}
|
|
5281
|
-
}
|
|
5282
|
-
],
|
|
5283
5259
|
"symbolId": "src/extensions/ApplicationLoadBalancerExtensionV2:ApplicationLoadBalancerExtensionV2"
|
|
5284
5260
|
},
|
|
5285
5261
|
"@btc-embedded/cdk-extensions.ApplicationLoadBalancerProps": {
|
|
@@ -5518,7 +5494,7 @@
|
|
|
5518
5494
|
},
|
|
5519
5495
|
"locationInModule": {
|
|
5520
5496
|
"filename": "src/platform/ApplicationLoadBalancerV2.ts",
|
|
5521
|
-
"line":
|
|
5497
|
+
"line": 140
|
|
5522
5498
|
},
|
|
5523
5499
|
"parameters": [
|
|
5524
5500
|
{
|
|
@@ -5544,7 +5520,7 @@
|
|
|
5544
5520
|
"kind": "class",
|
|
5545
5521
|
"locationInModule": {
|
|
5546
5522
|
"filename": "src/platform/ApplicationLoadBalancerV2.ts",
|
|
5547
|
-
"line":
|
|
5523
|
+
"line": 90
|
|
5548
5524
|
},
|
|
5549
5525
|
"methods": [
|
|
5550
5526
|
{
|
|
@@ -5553,7 +5529,7 @@
|
|
|
5553
5529
|
},
|
|
5554
5530
|
"locationInModule": {
|
|
5555
5531
|
"filename": "src/platform/ApplicationLoadBalancerV2.ts",
|
|
5556
|
-
"line":
|
|
5532
|
+
"line": 91
|
|
5557
5533
|
},
|
|
5558
5534
|
"name": "fromBasePlatform",
|
|
5559
5535
|
"parameters": [
|
|
@@ -5593,7 +5569,22 @@
|
|
|
5593
5569
|
"immutable": true,
|
|
5594
5570
|
"locationInModule": {
|
|
5595
5571
|
"filename": "src/platform/ApplicationLoadBalancerV2.ts",
|
|
5596
|
-
"line":
|
|
5572
|
+
"line": 138
|
|
5573
|
+
},
|
|
5574
|
+
"name": "domainName",
|
|
5575
|
+
"overrides": "@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base",
|
|
5576
|
+
"type": {
|
|
5577
|
+
"primitive": "string"
|
|
5578
|
+
}
|
|
5579
|
+
},
|
|
5580
|
+
{
|
|
5581
|
+
"docs": {
|
|
5582
|
+
"stability": "experimental"
|
|
5583
|
+
},
|
|
5584
|
+
"immutable": true,
|
|
5585
|
+
"locationInModule": {
|
|
5586
|
+
"filename": "src/platform/ApplicationLoadBalancerV2.ts",
|
|
5587
|
+
"line": 137
|
|
5597
5588
|
},
|
|
5598
5589
|
"name": "targetGroup",
|
|
5599
5590
|
"overrides": "@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base",
|
|
@@ -5649,7 +5640,7 @@
|
|
|
5649
5640
|
"kind": "class",
|
|
5650
5641
|
"locationInModule": {
|
|
5651
5642
|
"filename": "src/platform/ApplicationLoadBalancerV2.ts",
|
|
5652
|
-
"line":
|
|
5643
|
+
"line": 69
|
|
5653
5644
|
},
|
|
5654
5645
|
"methods": [
|
|
5655
5646
|
{
|
|
@@ -5658,7 +5649,7 @@
|
|
|
5658
5649
|
},
|
|
5659
5650
|
"locationInModule": {
|
|
5660
5651
|
"filename": "src/platform/ApplicationLoadBalancerV2.ts",
|
|
5661
|
-
"line":
|
|
5652
|
+
"line": 76
|
|
5662
5653
|
},
|
|
5663
5654
|
"name": "addTarget",
|
|
5664
5655
|
"overrides": "@btc-embedded/cdk-extensions.IApplicationLoadBalancerV2",
|
|
@@ -5682,7 +5673,23 @@
|
|
|
5682
5673
|
"immutable": true,
|
|
5683
5674
|
"locationInModule": {
|
|
5684
5675
|
"filename": "src/platform/ApplicationLoadBalancerV2.ts",
|
|
5685
|
-
"line":
|
|
5676
|
+
"line": 74
|
|
5677
|
+
},
|
|
5678
|
+
"name": "domainName",
|
|
5679
|
+
"overrides": "@btc-embedded/cdk-extensions.IApplicationLoadBalancerV2",
|
|
5680
|
+
"type": {
|
|
5681
|
+
"primitive": "string"
|
|
5682
|
+
}
|
|
5683
|
+
},
|
|
5684
|
+
{
|
|
5685
|
+
"abstract": true,
|
|
5686
|
+
"docs": {
|
|
5687
|
+
"stability": "experimental"
|
|
5688
|
+
},
|
|
5689
|
+
"immutable": true,
|
|
5690
|
+
"locationInModule": {
|
|
5691
|
+
"filename": "src/platform/ApplicationLoadBalancerV2.ts",
|
|
5692
|
+
"line": 73
|
|
5686
5693
|
},
|
|
5687
5694
|
"name": "targetGroup",
|
|
5688
5695
|
"overrides": "@btc-embedded/cdk-extensions.IApplicationLoadBalancerV2",
|
|
@@ -6198,7 +6205,7 @@
|
|
|
6198
6205
|
},
|
|
6199
6206
|
"locationInModule": {
|
|
6200
6207
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6201
|
-
"line":
|
|
6208
|
+
"line": 218
|
|
6202
6209
|
},
|
|
6203
6210
|
"parameters": [
|
|
6204
6211
|
{
|
|
@@ -6224,7 +6231,7 @@
|
|
|
6224
6231
|
"kind": "class",
|
|
6225
6232
|
"locationInModule": {
|
|
6226
6233
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6227
|
-
"line":
|
|
6234
|
+
"line": 116
|
|
6228
6235
|
},
|
|
6229
6236
|
"methods": [
|
|
6230
6237
|
{
|
|
@@ -6233,7 +6240,7 @@
|
|
|
6233
6240
|
},
|
|
6234
6241
|
"locationInModule": {
|
|
6235
6242
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6236
|
-
"line":
|
|
6243
|
+
"line": 117
|
|
6237
6244
|
},
|
|
6238
6245
|
"name": "fromBasePlatform",
|
|
6239
6246
|
"parameters": [
|
|
@@ -6273,7 +6280,7 @@
|
|
|
6273
6280
|
"immutable": true,
|
|
6274
6281
|
"locationInModule": {
|
|
6275
6282
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6276
|
-
"line":
|
|
6283
|
+
"line": 213
|
|
6277
6284
|
},
|
|
6278
6285
|
"name": "apiUserPoolClient",
|
|
6279
6286
|
"overrides": "@btc-embedded/cdk-extensions.CognitoUserPoolBase",
|
|
@@ -6288,7 +6295,38 @@
|
|
|
6288
6295
|
"immutable": true,
|
|
6289
6296
|
"locationInModule": {
|
|
6290
6297
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6291
|
-
"line":
|
|
6298
|
+
"line": 214
|
|
6299
|
+
},
|
|
6300
|
+
"name": "appClientSecret",
|
|
6301
|
+
"overrides": "@btc-embedded/cdk-extensions.CognitoUserPoolBase",
|
|
6302
|
+
"type": {
|
|
6303
|
+
"fqn": "aws-cdk-lib.aws_secretsmanager.ISecret"
|
|
6304
|
+
}
|
|
6305
|
+
},
|
|
6306
|
+
{
|
|
6307
|
+
"docs": {
|
|
6308
|
+
"stability": "experimental",
|
|
6309
|
+
"summary": "Contains the OpenID parameters of the frontend/web application client."
|
|
6310
|
+
},
|
|
6311
|
+
"immutable": true,
|
|
6312
|
+
"locationInModule": {
|
|
6313
|
+
"filename": "src/platform/CognitoUserPool.ts",
|
|
6314
|
+
"line": 216
|
|
6315
|
+
},
|
|
6316
|
+
"name": "appOpenIdParameters",
|
|
6317
|
+
"overrides": "@btc-embedded/cdk-extensions.CognitoUserPoolBase",
|
|
6318
|
+
"type": {
|
|
6319
|
+
"fqn": "@btc-embedded/cdk-extensions.AppOpenIdParameters"
|
|
6320
|
+
}
|
|
6321
|
+
},
|
|
6322
|
+
{
|
|
6323
|
+
"docs": {
|
|
6324
|
+
"stability": "experimental"
|
|
6325
|
+
},
|
|
6326
|
+
"immutable": true,
|
|
6327
|
+
"locationInModule": {
|
|
6328
|
+
"filename": "src/platform/CognitoUserPool.ts",
|
|
6329
|
+
"line": 212
|
|
6292
6330
|
},
|
|
6293
6331
|
"name": "appUserPoolClient",
|
|
6294
6332
|
"overrides": "@btc-embedded/cdk-extensions.CognitoUserPoolBase",
|
|
@@ -6303,7 +6341,7 @@
|
|
|
6303
6341
|
"immutable": true,
|
|
6304
6342
|
"locationInModule": {
|
|
6305
6343
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6306
|
-
"line":
|
|
6344
|
+
"line": 215
|
|
6307
6345
|
},
|
|
6308
6346
|
"name": "cognitoUserPoolDomain",
|
|
6309
6347
|
"overrides": "@btc-embedded/cdk-extensions.CognitoUserPoolBase",
|
|
@@ -6318,7 +6356,7 @@
|
|
|
6318
6356
|
"immutable": true,
|
|
6319
6357
|
"locationInModule": {
|
|
6320
6358
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6321
|
-
"line":
|
|
6359
|
+
"line": 211
|
|
6322
6360
|
},
|
|
6323
6361
|
"name": "userPool",
|
|
6324
6362
|
"overrides": "@btc-embedded/cdk-extensions.CognitoUserPoolBase",
|
|
@@ -6374,7 +6412,7 @@
|
|
|
6374
6412
|
"kind": "class",
|
|
6375
6413
|
"locationInModule": {
|
|
6376
6414
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6377
|
-
"line":
|
|
6415
|
+
"line": 92
|
|
6378
6416
|
},
|
|
6379
6417
|
"methods": [
|
|
6380
6418
|
{
|
|
@@ -6383,7 +6421,7 @@
|
|
|
6383
6421
|
},
|
|
6384
6422
|
"locationInModule": {
|
|
6385
6423
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6386
|
-
"line":
|
|
6424
|
+
"line": 109
|
|
6387
6425
|
},
|
|
6388
6426
|
"name": "createCognitoUserPoolsAuthorizer",
|
|
6389
6427
|
"overrides": "@btc-embedded/cdk-extensions.ICognitoUserPool",
|
|
@@ -6399,7 +6437,7 @@
|
|
|
6399
6437
|
},
|
|
6400
6438
|
"locationInModule": {
|
|
6401
6439
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6402
|
-
"line":
|
|
6440
|
+
"line": 103
|
|
6403
6441
|
},
|
|
6404
6442
|
"name": "createHttpUserPoolAuthorizer",
|
|
6405
6443
|
"overrides": "@btc-embedded/cdk-extensions.ICognitoUserPool",
|
|
@@ -6420,7 +6458,7 @@
|
|
|
6420
6458
|
"immutable": true,
|
|
6421
6459
|
"locationInModule": {
|
|
6422
6460
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6423
|
-
"line":
|
|
6461
|
+
"line": 98
|
|
6424
6462
|
},
|
|
6425
6463
|
"name": "apiUserPoolClient",
|
|
6426
6464
|
"overrides": "@btc-embedded/cdk-extensions.ICognitoUserPool",
|
|
@@ -6436,7 +6474,39 @@
|
|
|
6436
6474
|
"immutable": true,
|
|
6437
6475
|
"locationInModule": {
|
|
6438
6476
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6439
|
-
"line":
|
|
6477
|
+
"line": 100
|
|
6478
|
+
},
|
|
6479
|
+
"name": "appClientSecret",
|
|
6480
|
+
"type": {
|
|
6481
|
+
"fqn": "aws-cdk-lib.aws_secretsmanager.ISecret"
|
|
6482
|
+
}
|
|
6483
|
+
},
|
|
6484
|
+
{
|
|
6485
|
+
"abstract": true,
|
|
6486
|
+
"docs": {
|
|
6487
|
+
"stability": "experimental",
|
|
6488
|
+
"summary": "Contains the OpenID parameters of the frontend/web application client."
|
|
6489
|
+
},
|
|
6490
|
+
"immutable": true,
|
|
6491
|
+
"locationInModule": {
|
|
6492
|
+
"filename": "src/platform/CognitoUserPool.ts",
|
|
6493
|
+
"line": 101
|
|
6494
|
+
},
|
|
6495
|
+
"name": "appOpenIdParameters",
|
|
6496
|
+
"overrides": "@btc-embedded/cdk-extensions.ICognitoUserPool",
|
|
6497
|
+
"type": {
|
|
6498
|
+
"fqn": "@btc-embedded/cdk-extensions.AppOpenIdParameters"
|
|
6499
|
+
}
|
|
6500
|
+
},
|
|
6501
|
+
{
|
|
6502
|
+
"abstract": true,
|
|
6503
|
+
"docs": {
|
|
6504
|
+
"stability": "experimental"
|
|
6505
|
+
},
|
|
6506
|
+
"immutable": true,
|
|
6507
|
+
"locationInModule": {
|
|
6508
|
+
"filename": "src/platform/CognitoUserPool.ts",
|
|
6509
|
+
"line": 97
|
|
6440
6510
|
},
|
|
6441
6511
|
"name": "appUserPoolClient",
|
|
6442
6512
|
"overrides": "@btc-embedded/cdk-extensions.ICognitoUserPool",
|
|
@@ -6452,7 +6522,7 @@
|
|
|
6452
6522
|
"immutable": true,
|
|
6453
6523
|
"locationInModule": {
|
|
6454
6524
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6455
|
-
"line":
|
|
6525
|
+
"line": 99
|
|
6456
6526
|
},
|
|
6457
6527
|
"name": "cognitoUserPoolDomain",
|
|
6458
6528
|
"overrides": "@btc-embedded/cdk-extensions.ICognitoUserPool",
|
|
@@ -6468,7 +6538,7 @@
|
|
|
6468
6538
|
"immutable": true,
|
|
6469
6539
|
"locationInModule": {
|
|
6470
6540
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6471
|
-
"line":
|
|
6541
|
+
"line": 96
|
|
6472
6542
|
},
|
|
6473
6543
|
"name": "userPool",
|
|
6474
6544
|
"overrides": "@btc-embedded/cdk-extensions.ICognitoUserPool",
|
|
@@ -6489,7 +6559,7 @@
|
|
|
6489
6559
|
"kind": "interface",
|
|
6490
6560
|
"locationInModule": {
|
|
6491
6561
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6492
|
-
"line":
|
|
6562
|
+
"line": 20
|
|
6493
6563
|
},
|
|
6494
6564
|
"name": "CognitoUserPoolProps",
|
|
6495
6565
|
"properties": [
|
|
@@ -6502,7 +6572,7 @@
|
|
|
6502
6572
|
"immutable": true,
|
|
6503
6573
|
"locationInModule": {
|
|
6504
6574
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6505
|
-
"line":
|
|
6575
|
+
"line": 52
|
|
6506
6576
|
},
|
|
6507
6577
|
"name": "callbackUrls",
|
|
6508
6578
|
"type": {
|
|
@@ -6522,7 +6592,7 @@
|
|
|
6522
6592
|
"immutable": true,
|
|
6523
6593
|
"locationInModule": {
|
|
6524
6594
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6525
|
-
"line":
|
|
6595
|
+
"line": 29
|
|
6526
6596
|
},
|
|
6527
6597
|
"name": "userPoolDomain",
|
|
6528
6598
|
"type": {
|
|
@@ -6538,7 +6608,7 @@
|
|
|
6538
6608
|
"immutable": true,
|
|
6539
6609
|
"locationInModule": {
|
|
6540
6610
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6541
|
-
"line":
|
|
6611
|
+
"line": 24
|
|
6542
6612
|
},
|
|
6543
6613
|
"name": "userPoolId",
|
|
6544
6614
|
"type": {
|
|
@@ -6554,7 +6624,7 @@
|
|
|
6554
6624
|
"immutable": true,
|
|
6555
6625
|
"locationInModule": {
|
|
6556
6626
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6557
|
-
"line":
|
|
6627
|
+
"line": 34
|
|
6558
6628
|
},
|
|
6559
6629
|
"name": "additionalUserPoolIdentityProviders",
|
|
6560
6630
|
"optional": true,
|
|
@@ -6576,7 +6646,7 @@
|
|
|
6576
6646
|
"immutable": true,
|
|
6577
6647
|
"locationInModule": {
|
|
6578
6648
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6579
|
-
"line":
|
|
6649
|
+
"line": 57
|
|
6580
6650
|
},
|
|
6581
6651
|
"name": "apiClientOptions",
|
|
6582
6652
|
"optional": true,
|
|
@@ -6593,7 +6663,7 @@
|
|
|
6593
6663
|
"immutable": true,
|
|
6594
6664
|
"locationInModule": {
|
|
6595
6665
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6596
|
-
"line":
|
|
6666
|
+
"line": 62
|
|
6597
6667
|
},
|
|
6598
6668
|
"name": "appClientOptions",
|
|
6599
6669
|
"optional": true,
|
|
@@ -6610,7 +6680,7 @@
|
|
|
6610
6680
|
"immutable": true,
|
|
6611
6681
|
"locationInModule": {
|
|
6612
6682
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6613
|
-
"line":
|
|
6683
|
+
"line": 67
|
|
6614
6684
|
},
|
|
6615
6685
|
"name": "createManagedLoginBranding",
|
|
6616
6686
|
"optional": true,
|
|
@@ -6627,7 +6697,7 @@
|
|
|
6627
6697
|
"immutable": true,
|
|
6628
6698
|
"locationInModule": {
|
|
6629
6699
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6630
|
-
"line":
|
|
6700
|
+
"line": 46
|
|
6631
6701
|
},
|
|
6632
6702
|
"name": "logoutUrls",
|
|
6633
6703
|
"optional": true,
|
|
@@ -6650,7 +6720,7 @@
|
|
|
6650
6720
|
"immutable": true,
|
|
6651
6721
|
"locationInModule": {
|
|
6652
6722
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
6653
|
-
"line":
|
|
6723
|
+
"line": 41
|
|
6654
6724
|
},
|
|
6655
6725
|
"name": "resourceServer",
|
|
6656
6726
|
"optional": true,
|
|
@@ -7763,28 +7833,233 @@
|
|
|
7763
7833
|
"filename": "src/extensions/DomainEventMessagingExtension.ts",
|
|
7764
7834
|
"line": 30
|
|
7765
7835
|
},
|
|
7766
|
-
"name": "queue",
|
|
7836
|
+
"name": "queue",
|
|
7837
|
+
"optional": true,
|
|
7838
|
+
"type": {
|
|
7839
|
+
"fqn": "aws-cdk-lib.aws_sqs.IQueue"
|
|
7840
|
+
}
|
|
7841
|
+
},
|
|
7842
|
+
{
|
|
7843
|
+
"docs": {
|
|
7844
|
+
"stability": "experimental"
|
|
7845
|
+
},
|
|
7846
|
+
"locationInModule": {
|
|
7847
|
+
"filename": "src/extensions/DomainEventMessagingExtension.ts",
|
|
7848
|
+
"line": 31
|
|
7849
|
+
},
|
|
7850
|
+
"name": "queueExtension",
|
|
7851
|
+
"optional": true,
|
|
7852
|
+
"type": {
|
|
7853
|
+
"fqn": "@aws-cdk-containers/ecs-service-extensions.QueueExtension"
|
|
7854
|
+
}
|
|
7855
|
+
}
|
|
7856
|
+
],
|
|
7857
|
+
"symbolId": "src/extensions/DomainEventMessagingExtension:DomainEventMessagingExtension"
|
|
7858
|
+
},
|
|
7859
|
+
"@btc-embedded/cdk-extensions.EcsCluster": {
|
|
7860
|
+
"assembly": "@btc-embedded/cdk-extensions",
|
|
7861
|
+
"base": "constructs.Construct",
|
|
7862
|
+
"docs": {
|
|
7863
|
+
"remarks": "This construct provides a standardized way to create ECS clusters with support for:\n- KMS encryption for ECS Exec command sessions\n- Fargate Spot capacity providers\n- Configurable capacity provider strategies with base and weight values\n\nThe cluster exports its name and VPC ID as stack parameters, allowing other stacks\nto import and reference the cluster using the `fromBasePlatform` static method.",
|
|
7864
|
+
"stability": "experimental",
|
|
7865
|
+
"summary": "A CDK construct that creates and configures an Amazon ECS cluster with optional features."
|
|
7866
|
+
},
|
|
7867
|
+
"fqn": "@btc-embedded/cdk-extensions.EcsCluster",
|
|
7868
|
+
"initializer": {
|
|
7869
|
+
"docs": {
|
|
7870
|
+
"stability": "experimental"
|
|
7871
|
+
},
|
|
7872
|
+
"locationInModule": {
|
|
7873
|
+
"filename": "src/platform/EcsCluster.ts",
|
|
7874
|
+
"line": 68
|
|
7875
|
+
},
|
|
7876
|
+
"parameters": [
|
|
7877
|
+
{
|
|
7878
|
+
"name": "scope",
|
|
7879
|
+
"type": {
|
|
7880
|
+
"fqn": "constructs.Construct"
|
|
7881
|
+
}
|
|
7882
|
+
},
|
|
7883
|
+
{
|
|
7884
|
+
"name": "id",
|
|
7885
|
+
"type": {
|
|
7886
|
+
"primitive": "string"
|
|
7887
|
+
}
|
|
7888
|
+
},
|
|
7889
|
+
{
|
|
7890
|
+
"name": "props",
|
|
7891
|
+
"type": {
|
|
7892
|
+
"fqn": "@btc-embedded/cdk-extensions.EcsClusterProps"
|
|
7893
|
+
}
|
|
7894
|
+
}
|
|
7895
|
+
]
|
|
7896
|
+
},
|
|
7897
|
+
"interfaces": [
|
|
7898
|
+
"@btc-embedded/cdk-extensions.IEcsCluster"
|
|
7899
|
+
],
|
|
7900
|
+
"kind": "class",
|
|
7901
|
+
"locationInModule": {
|
|
7902
|
+
"filename": "src/platform/EcsCluster.ts",
|
|
7903
|
+
"line": 35
|
|
7904
|
+
},
|
|
7905
|
+
"methods": [
|
|
7906
|
+
{
|
|
7907
|
+
"docs": {
|
|
7908
|
+
"stability": "experimental"
|
|
7909
|
+
},
|
|
7910
|
+
"locationInModule": {
|
|
7911
|
+
"filename": "src/platform/EcsCluster.ts",
|
|
7912
|
+
"line": 36
|
|
7913
|
+
},
|
|
7914
|
+
"name": "fromBasePlatform",
|
|
7915
|
+
"parameters": [
|
|
7916
|
+
{
|
|
7917
|
+
"name": "scope",
|
|
7918
|
+
"type": {
|
|
7919
|
+
"fqn": "constructs.Construct"
|
|
7920
|
+
}
|
|
7921
|
+
},
|
|
7922
|
+
{
|
|
7923
|
+
"name": "id",
|
|
7924
|
+
"type": {
|
|
7925
|
+
"primitive": "string"
|
|
7926
|
+
}
|
|
7927
|
+
},
|
|
7928
|
+
{
|
|
7929
|
+
"name": "stackName",
|
|
7930
|
+
"type": {
|
|
7931
|
+
"primitive": "string"
|
|
7932
|
+
}
|
|
7933
|
+
}
|
|
7934
|
+
],
|
|
7935
|
+
"returns": {
|
|
7936
|
+
"type": {
|
|
7937
|
+
"fqn": "@btc-embedded/cdk-extensions.IEcsCluster"
|
|
7938
|
+
}
|
|
7939
|
+
},
|
|
7940
|
+
"static": true
|
|
7941
|
+
}
|
|
7942
|
+
],
|
|
7943
|
+
"name": "EcsCluster",
|
|
7944
|
+
"properties": [
|
|
7945
|
+
{
|
|
7946
|
+
"docs": {
|
|
7947
|
+
"stability": "experimental"
|
|
7948
|
+
},
|
|
7949
|
+
"immutable": true,
|
|
7950
|
+
"locationInModule": {
|
|
7951
|
+
"filename": "src/platform/EcsCluster.ts",
|
|
7952
|
+
"line": 66
|
|
7953
|
+
},
|
|
7954
|
+
"name": "cluster",
|
|
7955
|
+
"overrides": "@btc-embedded/cdk-extensions.IEcsCluster",
|
|
7956
|
+
"type": {
|
|
7957
|
+
"fqn": "aws-cdk-lib.aws_ecs.ICluster"
|
|
7958
|
+
}
|
|
7959
|
+
}
|
|
7960
|
+
],
|
|
7961
|
+
"symbolId": "src/platform/EcsCluster:EcsCluster"
|
|
7962
|
+
},
|
|
7963
|
+
"@btc-embedded/cdk-extensions.EcsClusterProps": {
|
|
7964
|
+
"assembly": "@btc-embedded/cdk-extensions",
|
|
7965
|
+
"datatype": true,
|
|
7966
|
+
"docs": {
|
|
7967
|
+
"stability": "experimental"
|
|
7968
|
+
},
|
|
7969
|
+
"fqn": "@btc-embedded/cdk-extensions.EcsClusterProps",
|
|
7970
|
+
"kind": "interface",
|
|
7971
|
+
"locationInModule": {
|
|
7972
|
+
"filename": "src/platform/EcsCluster.ts",
|
|
7973
|
+
"line": 7
|
|
7974
|
+
},
|
|
7975
|
+
"name": "EcsClusterProps",
|
|
7976
|
+
"properties": [
|
|
7977
|
+
{
|
|
7978
|
+
"abstract": true,
|
|
7979
|
+
"docs": {
|
|
7980
|
+
"stability": "experimental",
|
|
7981
|
+
"summary": "The VPC in which to create the ECS cluster."
|
|
7982
|
+
},
|
|
7983
|
+
"immutable": true,
|
|
7984
|
+
"locationInModule": {
|
|
7985
|
+
"filename": "src/platform/EcsCluster.ts",
|
|
7986
|
+
"line": 9
|
|
7987
|
+
},
|
|
7988
|
+
"name": "vpc",
|
|
7989
|
+
"type": {
|
|
7990
|
+
"fqn": "aws-cdk-lib.aws_ec2.IVpc"
|
|
7991
|
+
}
|
|
7992
|
+
},
|
|
7993
|
+
{
|
|
7994
|
+
"abstract": true,
|
|
7995
|
+
"docs": {
|
|
7996
|
+
"stability": "experimental",
|
|
7997
|
+
"summary": "The base value for the capacity provider strategy."
|
|
7998
|
+
},
|
|
7999
|
+
"immutable": true,
|
|
8000
|
+
"locationInModule": {
|
|
8001
|
+
"filename": "src/platform/EcsCluster.ts",
|
|
8002
|
+
"line": 15
|
|
8003
|
+
},
|
|
8004
|
+
"name": "capacityProvidersBase",
|
|
8005
|
+
"optional": true,
|
|
8006
|
+
"type": {
|
|
8007
|
+
"primitive": "number"
|
|
8008
|
+
}
|
|
8009
|
+
},
|
|
8010
|
+
{
|
|
8011
|
+
"abstract": true,
|
|
8012
|
+
"docs": {
|
|
8013
|
+
"stability": "experimental",
|
|
8014
|
+
"summary": "The weight value for the capacity provider strategy."
|
|
8015
|
+
},
|
|
8016
|
+
"immutable": true,
|
|
8017
|
+
"locationInModule": {
|
|
8018
|
+
"filename": "src/platform/EcsCluster.ts",
|
|
8019
|
+
"line": 17
|
|
8020
|
+
},
|
|
8021
|
+
"name": "capacityProvidersWeight",
|
|
8022
|
+
"optional": true,
|
|
8023
|
+
"type": {
|
|
8024
|
+
"primitive": "number"
|
|
8025
|
+
}
|
|
8026
|
+
},
|
|
8027
|
+
{
|
|
8028
|
+
"abstract": true,
|
|
8029
|
+
"docs": {
|
|
8030
|
+
"stability": "experimental",
|
|
8031
|
+
"summary": "Whether to create a KMS key for execute command encryption."
|
|
8032
|
+
},
|
|
8033
|
+
"immutable": true,
|
|
8034
|
+
"locationInModule": {
|
|
8035
|
+
"filename": "src/platform/EcsCluster.ts",
|
|
8036
|
+
"line": 11
|
|
8037
|
+
},
|
|
8038
|
+
"name": "createKmsExecCommandKey",
|
|
7767
8039
|
"optional": true,
|
|
7768
8040
|
"type": {
|
|
7769
|
-
"
|
|
8041
|
+
"primitive": "boolean"
|
|
7770
8042
|
}
|
|
7771
8043
|
},
|
|
7772
8044
|
{
|
|
8045
|
+
"abstract": true,
|
|
7773
8046
|
"docs": {
|
|
7774
|
-
"stability": "experimental"
|
|
8047
|
+
"stability": "experimental",
|
|
8048
|
+
"summary": "Whether to enable Fargate Spot capacity provider."
|
|
7775
8049
|
},
|
|
8050
|
+
"immutable": true,
|
|
7776
8051
|
"locationInModule": {
|
|
7777
|
-
"filename": "src/
|
|
7778
|
-
"line":
|
|
8052
|
+
"filename": "src/platform/EcsCluster.ts",
|
|
8053
|
+
"line": 13
|
|
7779
8054
|
},
|
|
7780
|
-
"name": "
|
|
8055
|
+
"name": "enableFargateSpotCapacityProvider",
|
|
7781
8056
|
"optional": true,
|
|
7782
8057
|
"type": {
|
|
7783
|
-
"
|
|
8058
|
+
"primitive": "boolean"
|
|
7784
8059
|
}
|
|
7785
8060
|
}
|
|
7786
8061
|
],
|
|
7787
|
-
"symbolId": "src/
|
|
8062
|
+
"symbolId": "src/platform/EcsCluster:EcsClusterProps"
|
|
7788
8063
|
},
|
|
7789
8064
|
"@btc-embedded/cdk-extensions.EfsAccessMode": {
|
|
7790
8065
|
"assembly": "@btc-embedded/cdk-extensions",
|
|
@@ -9268,7 +9543,7 @@
|
|
|
9268
9543
|
},
|
|
9269
9544
|
"locationInModule": {
|
|
9270
9545
|
"filename": "src/platform/ApplicationLoadBalancerV2.ts",
|
|
9271
|
-
"line":
|
|
9546
|
+
"line": 66
|
|
9272
9547
|
},
|
|
9273
9548
|
"name": "addTarget",
|
|
9274
9549
|
"parameters": [
|
|
@@ -9283,6 +9558,21 @@
|
|
|
9283
9558
|
],
|
|
9284
9559
|
"name": "IApplicationLoadBalancerV2",
|
|
9285
9560
|
"properties": [
|
|
9561
|
+
{
|
|
9562
|
+
"abstract": true,
|
|
9563
|
+
"docs": {
|
|
9564
|
+
"stability": "experimental"
|
|
9565
|
+
},
|
|
9566
|
+
"immutable": true,
|
|
9567
|
+
"locationInModule": {
|
|
9568
|
+
"filename": "src/platform/ApplicationLoadBalancerV2.ts",
|
|
9569
|
+
"line": 64
|
|
9570
|
+
},
|
|
9571
|
+
"name": "domainName",
|
|
9572
|
+
"type": {
|
|
9573
|
+
"primitive": "string"
|
|
9574
|
+
}
|
|
9575
|
+
},
|
|
9286
9576
|
{
|
|
9287
9577
|
"abstract": true,
|
|
9288
9578
|
"docs": {
|
|
@@ -9310,7 +9600,7 @@
|
|
|
9310
9600
|
"kind": "interface",
|
|
9311
9601
|
"locationInModule": {
|
|
9312
9602
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
9313
|
-
"line":
|
|
9603
|
+
"line": 77
|
|
9314
9604
|
},
|
|
9315
9605
|
"methods": [
|
|
9316
9606
|
{
|
|
@@ -9320,7 +9610,7 @@
|
|
|
9320
9610
|
},
|
|
9321
9611
|
"locationInModule": {
|
|
9322
9612
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
9323
|
-
"line":
|
|
9613
|
+
"line": 89
|
|
9324
9614
|
},
|
|
9325
9615
|
"name": "createCognitoUserPoolsAuthorizer",
|
|
9326
9616
|
"returns": {
|
|
@@ -9336,7 +9626,7 @@
|
|
|
9336
9626
|
},
|
|
9337
9627
|
"locationInModule": {
|
|
9338
9628
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
9339
|
-
"line":
|
|
9629
|
+
"line": 88
|
|
9340
9630
|
},
|
|
9341
9631
|
"name": "createHttpUserPoolAuthorizer",
|
|
9342
9632
|
"returns": {
|
|
@@ -9356,13 +9646,29 @@
|
|
|
9356
9646
|
"immutable": true,
|
|
9357
9647
|
"locationInModule": {
|
|
9358
9648
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
9359
|
-
"line":
|
|
9649
|
+
"line": 80
|
|
9360
9650
|
},
|
|
9361
9651
|
"name": "apiUserPoolClient",
|
|
9362
9652
|
"type": {
|
|
9363
9653
|
"fqn": "aws-cdk-lib.aws_cognito.IUserPoolClient"
|
|
9364
9654
|
}
|
|
9365
9655
|
},
|
|
9656
|
+
{
|
|
9657
|
+
"abstract": true,
|
|
9658
|
+
"docs": {
|
|
9659
|
+
"stability": "experimental",
|
|
9660
|
+
"summary": "Contains the OpenID parameters of the frontend/web application client."
|
|
9661
|
+
},
|
|
9662
|
+
"immutable": true,
|
|
9663
|
+
"locationInModule": {
|
|
9664
|
+
"filename": "src/platform/CognitoUserPool.ts",
|
|
9665
|
+
"line": 86
|
|
9666
|
+
},
|
|
9667
|
+
"name": "appOpenIdParameters",
|
|
9668
|
+
"type": {
|
|
9669
|
+
"fqn": "@btc-embedded/cdk-extensions.AppOpenIdParameters"
|
|
9670
|
+
}
|
|
9671
|
+
},
|
|
9366
9672
|
{
|
|
9367
9673
|
"abstract": true,
|
|
9368
9674
|
"docs": {
|
|
@@ -9371,7 +9677,7 @@
|
|
|
9371
9677
|
"immutable": true,
|
|
9372
9678
|
"locationInModule": {
|
|
9373
9679
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
9374
|
-
"line":
|
|
9680
|
+
"line": 79
|
|
9375
9681
|
},
|
|
9376
9682
|
"name": "appUserPoolClient",
|
|
9377
9683
|
"type": {
|
|
@@ -9386,7 +9692,7 @@
|
|
|
9386
9692
|
"immutable": true,
|
|
9387
9693
|
"locationInModule": {
|
|
9388
9694
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
9389
|
-
"line":
|
|
9695
|
+
"line": 81
|
|
9390
9696
|
},
|
|
9391
9697
|
"name": "cognitoUserPoolDomain",
|
|
9392
9698
|
"type": {
|
|
@@ -9401,7 +9707,7 @@
|
|
|
9401
9707
|
"immutable": true,
|
|
9402
9708
|
"locationInModule": {
|
|
9403
9709
|
"filename": "src/platform/CognitoUserPool.ts",
|
|
9404
|
-
"line":
|
|
9710
|
+
"line": 78
|
|
9405
9711
|
},
|
|
9406
9712
|
"name": "userPool",
|
|
9407
9713
|
"type": {
|
|
@@ -9478,6 +9784,37 @@
|
|
|
9478
9784
|
],
|
|
9479
9785
|
"symbolId": "src/platform/DocumentDB:IDocumentDB"
|
|
9480
9786
|
},
|
|
9787
|
+
"@btc-embedded/cdk-extensions.IEcsCluster": {
|
|
9788
|
+
"assembly": "@btc-embedded/cdk-extensions",
|
|
9789
|
+
"docs": {
|
|
9790
|
+
"stability": "experimental"
|
|
9791
|
+
},
|
|
9792
|
+
"fqn": "@btc-embedded/cdk-extensions.IEcsCluster",
|
|
9793
|
+
"kind": "interface",
|
|
9794
|
+
"locationInModule": {
|
|
9795
|
+
"filename": "src/platform/EcsCluster.ts",
|
|
9796
|
+
"line": 20
|
|
9797
|
+
},
|
|
9798
|
+
"name": "IEcsCluster",
|
|
9799
|
+
"properties": [
|
|
9800
|
+
{
|
|
9801
|
+
"abstract": true,
|
|
9802
|
+
"docs": {
|
|
9803
|
+
"stability": "experimental"
|
|
9804
|
+
},
|
|
9805
|
+
"immutable": true,
|
|
9806
|
+
"locationInModule": {
|
|
9807
|
+
"filename": "src/platform/EcsCluster.ts",
|
|
9808
|
+
"line": 21
|
|
9809
|
+
},
|
|
9810
|
+
"name": "cluster",
|
|
9811
|
+
"type": {
|
|
9812
|
+
"fqn": "aws-cdk-lib.aws_ecs.ICluster"
|
|
9813
|
+
}
|
|
9814
|
+
}
|
|
9815
|
+
],
|
|
9816
|
+
"symbolId": "src/platform/EcsCluster:IEcsCluster"
|
|
9817
|
+
},
|
|
9481
9818
|
"@btc-embedded/cdk-extensions.IEfsFileSystem": {
|
|
9482
9819
|
"assembly": "@btc-embedded/cdk-extensions",
|
|
9483
9820
|
"docs": {
|
|
@@ -9661,6 +9998,37 @@
|
|
|
9661
9998
|
],
|
|
9662
9999
|
"symbolId": "src/platform/Vpc:IVpc"
|
|
9663
10000
|
},
|
|
10001
|
+
"@btc-embedded/cdk-extensions.IVpcV2": {
|
|
10002
|
+
"assembly": "@btc-embedded/cdk-extensions",
|
|
10003
|
+
"docs": {
|
|
10004
|
+
"stability": "experimental"
|
|
10005
|
+
},
|
|
10006
|
+
"fqn": "@btc-embedded/cdk-extensions.IVpcV2",
|
|
10007
|
+
"kind": "interface",
|
|
10008
|
+
"locationInModule": {
|
|
10009
|
+
"filename": "src/platform/VpcV2.ts",
|
|
10010
|
+
"line": 30
|
|
10011
|
+
},
|
|
10012
|
+
"name": "IVpcV2",
|
|
10013
|
+
"properties": [
|
|
10014
|
+
{
|
|
10015
|
+
"abstract": true,
|
|
10016
|
+
"docs": {
|
|
10017
|
+
"stability": "experimental"
|
|
10018
|
+
},
|
|
10019
|
+
"immutable": true,
|
|
10020
|
+
"locationInModule": {
|
|
10021
|
+
"filename": "src/platform/VpcV2.ts",
|
|
10022
|
+
"line": 31
|
|
10023
|
+
},
|
|
10024
|
+
"name": "vpcInstance",
|
|
10025
|
+
"type": {
|
|
10026
|
+
"fqn": "aws-cdk-lib.aws_ec2.IVpc"
|
|
10027
|
+
}
|
|
10028
|
+
}
|
|
10029
|
+
],
|
|
10030
|
+
"symbolId": "src/platform/VpcV2:IVpcV2"
|
|
10031
|
+
},
|
|
9664
10032
|
"@btc-embedded/cdk-extensions.ImportLogGroupOption": {
|
|
9665
10033
|
"assembly": "@btc-embedded/cdk-extensions",
|
|
9666
10034
|
"datatype": true,
|
|
@@ -9932,84 +10300,221 @@
|
|
|
9932
10300
|
}
|
|
9933
10301
|
}
|
|
9934
10302
|
],
|
|
9935
|
-
"symbolId": "src/extensions/ModifyContainerDefinitionExtension:ModifyContainerDefinitionExtension"
|
|
10303
|
+
"symbolId": "src/extensions/ModifyContainerDefinitionExtension:ModifyContainerDefinitionExtension"
|
|
10304
|
+
},
|
|
10305
|
+
"@btc-embedded/cdk-extensions.ModifyTaskDefinitionExtension": {
|
|
10306
|
+
"assembly": "@btc-embedded/cdk-extensions",
|
|
10307
|
+
"base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
|
|
10308
|
+
"docs": {
|
|
10309
|
+
"stability": "experimental",
|
|
10310
|
+
"summary": "An extension that allows modifying the task definition properties."
|
|
10311
|
+
},
|
|
10312
|
+
"fqn": "@btc-embedded/cdk-extensions.ModifyTaskDefinitionExtension",
|
|
10313
|
+
"initializer": {
|
|
10314
|
+
"docs": {
|
|
10315
|
+
"stability": "experimental"
|
|
10316
|
+
},
|
|
10317
|
+
"locationInModule": {
|
|
10318
|
+
"filename": "src/extensions/ModifyTaskDefinitionExtension.ts",
|
|
10319
|
+
"line": 10
|
|
10320
|
+
},
|
|
10321
|
+
"parameters": [
|
|
10322
|
+
{
|
|
10323
|
+
"name": "props",
|
|
10324
|
+
"type": {
|
|
10325
|
+
"fqn": "aws-cdk-lib.aws_ecs.TaskDefinitionProps"
|
|
10326
|
+
}
|
|
10327
|
+
}
|
|
10328
|
+
]
|
|
10329
|
+
},
|
|
10330
|
+
"kind": "class",
|
|
10331
|
+
"locationInModule": {
|
|
10332
|
+
"filename": "src/extensions/ModifyTaskDefinitionExtension.ts",
|
|
10333
|
+
"line": 7
|
|
10334
|
+
},
|
|
10335
|
+
"methods": [
|
|
10336
|
+
{
|
|
10337
|
+
"docs": {
|
|
10338
|
+
"remarks": "For example, the App Mesh\nextension needs to configure an Envoy proxy in the task definition,\nor the Application extension wants to set the overall resource for\nthe task.",
|
|
10339
|
+
"stability": "experimental",
|
|
10340
|
+
"summary": "This is a hook which allows extensions to modify the settings of the task definition prior to it being created."
|
|
10341
|
+
},
|
|
10342
|
+
"locationInModule": {
|
|
10343
|
+
"filename": "src/extensions/ModifyTaskDefinitionExtension.ts",
|
|
10344
|
+
"line": 15
|
|
10345
|
+
},
|
|
10346
|
+
"name": "modifyTaskDefinitionProps",
|
|
10347
|
+
"overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
|
|
10348
|
+
"parameters": [
|
|
10349
|
+
{
|
|
10350
|
+
"name": "props",
|
|
10351
|
+
"type": {
|
|
10352
|
+
"fqn": "aws-cdk-lib.aws_ecs.TaskDefinitionProps"
|
|
10353
|
+
}
|
|
10354
|
+
}
|
|
10355
|
+
],
|
|
10356
|
+
"returns": {
|
|
10357
|
+
"type": {
|
|
10358
|
+
"fqn": "aws-cdk-lib.aws_ecs.TaskDefinitionProps"
|
|
10359
|
+
}
|
|
10360
|
+
}
|
|
10361
|
+
}
|
|
10362
|
+
],
|
|
10363
|
+
"name": "ModifyTaskDefinitionExtension",
|
|
10364
|
+
"properties": [
|
|
10365
|
+
{
|
|
10366
|
+
"docs": {
|
|
10367
|
+
"stability": "experimental"
|
|
10368
|
+
},
|
|
10369
|
+
"immutable": true,
|
|
10370
|
+
"locationInModule": {
|
|
10371
|
+
"filename": "src/extensions/ModifyTaskDefinitionExtension.ts",
|
|
10372
|
+
"line": 8
|
|
10373
|
+
},
|
|
10374
|
+
"name": "props",
|
|
10375
|
+
"type": {
|
|
10376
|
+
"fqn": "aws-cdk-lib.aws_ecs.TaskDefinitionProps"
|
|
10377
|
+
}
|
|
10378
|
+
}
|
|
10379
|
+
],
|
|
10380
|
+
"symbolId": "src/extensions/ModifyTaskDefinitionExtension:ModifyTaskDefinitionExtension"
|
|
10381
|
+
},
|
|
10382
|
+
"@btc-embedded/cdk-extensions.OpenIdExtension": {
|
|
10383
|
+
"assembly": "@btc-embedded/cdk-extensions",
|
|
10384
|
+
"base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
|
|
10385
|
+
"docs": {
|
|
10386
|
+
"stability": "experimental"
|
|
10387
|
+
},
|
|
10388
|
+
"fqn": "@btc-embedded/cdk-extensions.OpenIdExtension",
|
|
10389
|
+
"initializer": {
|
|
10390
|
+
"docs": {
|
|
10391
|
+
"stability": "experimental"
|
|
10392
|
+
},
|
|
10393
|
+
"locationInModule": {
|
|
10394
|
+
"filename": "src/extensions/OpenIdExtension.ts",
|
|
10395
|
+
"line": 66
|
|
10396
|
+
},
|
|
10397
|
+
"parameters": [
|
|
10398
|
+
{
|
|
10399
|
+
"name": "props",
|
|
10400
|
+
"type": {
|
|
10401
|
+
"fqn": "@btc-embedded/cdk-extensions.OpenIdExtensionProps"
|
|
10402
|
+
}
|
|
10403
|
+
}
|
|
10404
|
+
]
|
|
10405
|
+
},
|
|
10406
|
+
"kind": "class",
|
|
10407
|
+
"locationInModule": {
|
|
10408
|
+
"filename": "src/extensions/OpenIdExtension.ts",
|
|
10409
|
+
"line": 61
|
|
10410
|
+
},
|
|
10411
|
+
"methods": [
|
|
10412
|
+
{
|
|
10413
|
+
"docs": {
|
|
10414
|
+
"stability": "experimental",
|
|
10415
|
+
"summary": "A hook that allows the extension to add hooks to other extensions that are registered."
|
|
10416
|
+
},
|
|
10417
|
+
"locationInModule": {
|
|
10418
|
+
"filename": "src/extensions/OpenIdExtension.ts",
|
|
10419
|
+
"line": 71
|
|
10420
|
+
},
|
|
10421
|
+
"name": "addHooks",
|
|
10422
|
+
"overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension"
|
|
10423
|
+
},
|
|
10424
|
+
{
|
|
10425
|
+
"docs": {
|
|
10426
|
+
"stability": "experimental",
|
|
10427
|
+
"summary": "A hook that is called for each extension ahead of time to allow for any initial setup, such as creating resources in advance."
|
|
10428
|
+
},
|
|
10429
|
+
"locationInModule": {
|
|
10430
|
+
"filename": "src/extensions/OpenIdExtension.ts",
|
|
10431
|
+
"line": 87
|
|
10432
|
+
},
|
|
10433
|
+
"name": "prehook",
|
|
10434
|
+
"overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
|
|
10435
|
+
"parameters": [
|
|
10436
|
+
{
|
|
10437
|
+
"name": "service",
|
|
10438
|
+
"type": {
|
|
10439
|
+
"fqn": "@aws-cdk-containers/ecs-service-extensions.Service"
|
|
10440
|
+
}
|
|
10441
|
+
},
|
|
10442
|
+
{
|
|
10443
|
+
"name": "_scope",
|
|
10444
|
+
"type": {
|
|
10445
|
+
"fqn": "constructs.Construct"
|
|
10446
|
+
}
|
|
10447
|
+
}
|
|
10448
|
+
]
|
|
10449
|
+
}
|
|
10450
|
+
],
|
|
10451
|
+
"name": "OpenIdExtension",
|
|
10452
|
+
"properties": [
|
|
10453
|
+
{
|
|
10454
|
+
"docs": {
|
|
10455
|
+
"stability": "experimental"
|
|
10456
|
+
},
|
|
10457
|
+
"locationInModule": {
|
|
10458
|
+
"filename": "src/extensions/OpenIdExtension.ts",
|
|
10459
|
+
"line": 64
|
|
10460
|
+
},
|
|
10461
|
+
"name": "cognitoUserPool",
|
|
10462
|
+
"type": {
|
|
10463
|
+
"fqn": "@btc-embedded/cdk-extensions.ICognitoUserPool"
|
|
10464
|
+
}
|
|
10465
|
+
}
|
|
10466
|
+
],
|
|
10467
|
+
"symbolId": "src/extensions/OpenIdExtension:OpenIdExtension"
|
|
9936
10468
|
},
|
|
9937
|
-
"@btc-embedded/cdk-extensions.
|
|
10469
|
+
"@btc-embedded/cdk-extensions.OpenIdExtensionProps": {
|
|
9938
10470
|
"assembly": "@btc-embedded/cdk-extensions",
|
|
9939
|
-
"
|
|
10471
|
+
"datatype": true,
|
|
9940
10472
|
"docs": {
|
|
9941
|
-
"stability": "experimental"
|
|
9942
|
-
"summary": "An extension that allows modifying the task definition properties."
|
|
9943
|
-
},
|
|
9944
|
-
"fqn": "@btc-embedded/cdk-extensions.ModifyTaskDefinitionExtension",
|
|
9945
|
-
"initializer": {
|
|
9946
|
-
"docs": {
|
|
9947
|
-
"stability": "experimental"
|
|
9948
|
-
},
|
|
9949
|
-
"locationInModule": {
|
|
9950
|
-
"filename": "src/extensions/ModifyTaskDefinitionExtension.ts",
|
|
9951
|
-
"line": 10
|
|
9952
|
-
},
|
|
9953
|
-
"parameters": [
|
|
9954
|
-
{
|
|
9955
|
-
"name": "props",
|
|
9956
|
-
"type": {
|
|
9957
|
-
"fqn": "aws-cdk-lib.aws_ecs.TaskDefinitionProps"
|
|
9958
|
-
}
|
|
9959
|
-
}
|
|
9960
|
-
]
|
|
10473
|
+
"stability": "experimental"
|
|
9961
10474
|
},
|
|
9962
|
-
"
|
|
10475
|
+
"fqn": "@btc-embedded/cdk-extensions.OpenIdExtensionProps",
|
|
10476
|
+
"kind": "interface",
|
|
9963
10477
|
"locationInModule": {
|
|
9964
|
-
"filename": "src/extensions/
|
|
9965
|
-
"line":
|
|
10478
|
+
"filename": "src/extensions/OpenIdExtension.ts",
|
|
10479
|
+
"line": 49
|
|
9966
10480
|
},
|
|
9967
|
-
"
|
|
10481
|
+
"name": "OpenIdExtensionProps",
|
|
10482
|
+
"properties": [
|
|
9968
10483
|
{
|
|
10484
|
+
"abstract": true,
|
|
9969
10485
|
"docs": {
|
|
9970
|
-
"remarks": "For example, the App Mesh\nextension needs to configure an Envoy proxy in the task definition,\nor the Application extension wants to set the overall resource for\nthe task.",
|
|
9971
10486
|
"stability": "experimental",
|
|
9972
|
-
"summary": "
|
|
10487
|
+
"summary": "The name of the base platform stack."
|
|
9973
10488
|
},
|
|
10489
|
+
"immutable": true,
|
|
9974
10490
|
"locationInModule": {
|
|
9975
|
-
"filename": "src/extensions/
|
|
9976
|
-
"line":
|
|
10491
|
+
"filename": "src/extensions/OpenIdExtension.ts",
|
|
10492
|
+
"line": 53
|
|
9977
10493
|
},
|
|
9978
|
-
"name": "
|
|
9979
|
-
"
|
|
9980
|
-
|
|
9981
|
-
{
|
|
9982
|
-
"name": "props",
|
|
9983
|
-
"type": {
|
|
9984
|
-
"fqn": "aws-cdk-lib.aws_ecs.TaskDefinitionProps"
|
|
9985
|
-
}
|
|
9986
|
-
}
|
|
9987
|
-
],
|
|
9988
|
-
"returns": {
|
|
9989
|
-
"type": {
|
|
9990
|
-
"fqn": "aws-cdk-lib.aws_ecs.TaskDefinitionProps"
|
|
9991
|
-
}
|
|
10494
|
+
"name": "platformStackName",
|
|
10495
|
+
"type": {
|
|
10496
|
+
"primitive": "string"
|
|
9992
10497
|
}
|
|
9993
|
-
}
|
|
9994
|
-
],
|
|
9995
|
-
"name": "ModifyTaskDefinitionExtension",
|
|
9996
|
-
"properties": [
|
|
10498
|
+
},
|
|
9997
10499
|
{
|
|
10500
|
+
"abstract": true,
|
|
9998
10501
|
"docs": {
|
|
9999
|
-
"stability": "experimental"
|
|
10502
|
+
"stability": "experimental",
|
|
10503
|
+
"summary": "Adds OIDC_REDIRECT_URI environment variable to the container if set."
|
|
10000
10504
|
},
|
|
10001
10505
|
"immutable": true,
|
|
10002
10506
|
"locationInModule": {
|
|
10003
|
-
"filename": "src/extensions/
|
|
10004
|
-
"line":
|
|
10507
|
+
"filename": "src/extensions/OpenIdExtension.ts",
|
|
10508
|
+
"line": 58
|
|
10005
10509
|
},
|
|
10006
|
-
"name": "
|
|
10510
|
+
"name": "redirectUri",
|
|
10511
|
+
"optional": true,
|
|
10007
10512
|
"type": {
|
|
10008
|
-
"
|
|
10513
|
+
"primitive": "string"
|
|
10009
10514
|
}
|
|
10010
10515
|
}
|
|
10011
10516
|
],
|
|
10012
|
-
"symbolId": "src/extensions/
|
|
10517
|
+
"symbolId": "src/extensions/OpenIdExtension:OpenIdExtensionProps"
|
|
10013
10518
|
},
|
|
10014
10519
|
"@btc-embedded/cdk-extensions.OpenTelemetryExtension": {
|
|
10015
10520
|
"assembly": "@btc-embedded/cdk-extensions",
|
|
@@ -12030,16 +12535,17 @@
|
|
|
12030
12535
|
"assembly": "@btc-embedded/cdk-extensions",
|
|
12031
12536
|
"base": "constructs.Construct",
|
|
12032
12537
|
"docs": {
|
|
12033
|
-
"
|
|
12538
|
+
"deprecated": "This class is deprecated. Use {@link VpcV2 } and {@link EcsCluster } classes instead.",
|
|
12539
|
+
"stability": "deprecated"
|
|
12034
12540
|
},
|
|
12035
12541
|
"fqn": "@btc-embedded/cdk-extensions.Vpc",
|
|
12036
12542
|
"initializer": {
|
|
12037
12543
|
"docs": {
|
|
12038
|
-
"stability": "
|
|
12544
|
+
"stability": "deprecated"
|
|
12039
12545
|
},
|
|
12040
12546
|
"locationInModule": {
|
|
12041
12547
|
"filename": "src/platform/Vpc.ts",
|
|
12042
|
-
"line":
|
|
12548
|
+
"line": 77
|
|
12043
12549
|
},
|
|
12044
12550
|
"parameters": [
|
|
12045
12551
|
{
|
|
@@ -12078,16 +12584,16 @@
|
|
|
12078
12584
|
"kind": "class",
|
|
12079
12585
|
"locationInModule": {
|
|
12080
12586
|
"filename": "src/platform/Vpc.ts",
|
|
12081
|
-
"line":
|
|
12587
|
+
"line": 31
|
|
12082
12588
|
},
|
|
12083
12589
|
"methods": [
|
|
12084
12590
|
{
|
|
12085
12591
|
"docs": {
|
|
12086
|
-
"stability": "
|
|
12592
|
+
"stability": "deprecated"
|
|
12087
12593
|
},
|
|
12088
12594
|
"locationInModule": {
|
|
12089
12595
|
"filename": "src/platform/Vpc.ts",
|
|
12090
|
-
"line":
|
|
12596
|
+
"line": 32
|
|
12091
12597
|
},
|
|
12092
12598
|
"name": "fromBasePlatform",
|
|
12093
12599
|
"parameters": [
|
|
@@ -12122,12 +12628,12 @@
|
|
|
12122
12628
|
"properties": [
|
|
12123
12629
|
{
|
|
12124
12630
|
"docs": {
|
|
12125
|
-
"stability": "
|
|
12631
|
+
"stability": "deprecated"
|
|
12126
12632
|
},
|
|
12127
12633
|
"immutable": true,
|
|
12128
12634
|
"locationInModule": {
|
|
12129
12635
|
"filename": "src/platform/Vpc.ts",
|
|
12130
|
-
"line":
|
|
12636
|
+
"line": 66
|
|
12131
12637
|
},
|
|
12132
12638
|
"name": "clusterName",
|
|
12133
12639
|
"overrides": "@btc-embedded/cdk-extensions.IVpc",
|
|
@@ -12137,12 +12643,12 @@
|
|
|
12137
12643
|
},
|
|
12138
12644
|
{
|
|
12139
12645
|
"docs": {
|
|
12140
|
-
"stability": "
|
|
12646
|
+
"stability": "deprecated"
|
|
12141
12647
|
},
|
|
12142
12648
|
"immutable": true,
|
|
12143
12649
|
"locationInModule": {
|
|
12144
12650
|
"filename": "src/platform/Vpc.ts",
|
|
12145
|
-
"line":
|
|
12651
|
+
"line": 65
|
|
12146
12652
|
},
|
|
12147
12653
|
"name": "fqdn",
|
|
12148
12654
|
"overrides": "@btc-embedded/cdk-extensions.IVpc",
|
|
@@ -12152,11 +12658,11 @@
|
|
|
12152
12658
|
},
|
|
12153
12659
|
{
|
|
12154
12660
|
"docs": {
|
|
12155
|
-
"stability": "
|
|
12661
|
+
"stability": "deprecated"
|
|
12156
12662
|
},
|
|
12157
12663
|
"locationInModule": {
|
|
12158
12664
|
"filename": "src/platform/Vpc.ts",
|
|
12159
|
-
"line":
|
|
12665
|
+
"line": 64
|
|
12160
12666
|
},
|
|
12161
12667
|
"name": "cluster",
|
|
12162
12668
|
"type": {
|
|
@@ -12165,11 +12671,11 @@
|
|
|
12165
12671
|
},
|
|
12166
12672
|
{
|
|
12167
12673
|
"docs": {
|
|
12168
|
-
"stability": "
|
|
12674
|
+
"stability": "deprecated"
|
|
12169
12675
|
},
|
|
12170
12676
|
"locationInModule": {
|
|
12171
12677
|
"filename": "src/platform/Vpc.ts",
|
|
12172
|
-
"line":
|
|
12678
|
+
"line": 63
|
|
12173
12679
|
},
|
|
12174
12680
|
"name": "vpcInstance",
|
|
12175
12681
|
"type": {
|
|
@@ -12275,8 +12781,201 @@
|
|
|
12275
12781
|
}
|
|
12276
12782
|
],
|
|
12277
12783
|
"symbolId": "src/platform/Vpc:VpcProps"
|
|
12784
|
+
},
|
|
12785
|
+
"@btc-embedded/cdk-extensions.VpcV2": {
|
|
12786
|
+
"assembly": "@btc-embedded/cdk-extensions",
|
|
12787
|
+
"base": "constructs.Construct",
|
|
12788
|
+
"docs": {
|
|
12789
|
+
"remarks": "Supports importing by VPC ID, VPC name, or creating a new VPC with a specified CIDR block.",
|
|
12790
|
+
"stability": "experimental",
|
|
12791
|
+
"summary": "A construct that creates or imports an existing VPC."
|
|
12792
|
+
},
|
|
12793
|
+
"fqn": "@btc-embedded/cdk-extensions.VpcV2",
|
|
12794
|
+
"initializer": {
|
|
12795
|
+
"docs": {
|
|
12796
|
+
"stability": "experimental"
|
|
12797
|
+
},
|
|
12798
|
+
"locationInModule": {
|
|
12799
|
+
"filename": "src/platform/VpcV2.ts",
|
|
12800
|
+
"line": 61
|
|
12801
|
+
},
|
|
12802
|
+
"parameters": [
|
|
12803
|
+
{
|
|
12804
|
+
"name": "scope",
|
|
12805
|
+
"type": {
|
|
12806
|
+
"fqn": "constructs.Construct"
|
|
12807
|
+
}
|
|
12808
|
+
},
|
|
12809
|
+
{
|
|
12810
|
+
"name": "id",
|
|
12811
|
+
"type": {
|
|
12812
|
+
"primitive": "string"
|
|
12813
|
+
}
|
|
12814
|
+
},
|
|
12815
|
+
{
|
|
12816
|
+
"name": "props",
|
|
12817
|
+
"type": {
|
|
12818
|
+
"fqn": "@btc-embedded/cdk-extensions.VpcV2Props"
|
|
12819
|
+
}
|
|
12820
|
+
}
|
|
12821
|
+
]
|
|
12822
|
+
},
|
|
12823
|
+
"interfaces": [
|
|
12824
|
+
"@btc-embedded/cdk-extensions.IVpcV2"
|
|
12825
|
+
],
|
|
12826
|
+
"kind": "class",
|
|
12827
|
+
"locationInModule": {
|
|
12828
|
+
"filename": "src/platform/VpcV2.ts",
|
|
12829
|
+
"line": 38
|
|
12830
|
+
},
|
|
12831
|
+
"methods": [
|
|
12832
|
+
{
|
|
12833
|
+
"docs": {
|
|
12834
|
+
"stability": "experimental"
|
|
12835
|
+
},
|
|
12836
|
+
"locationInModule": {
|
|
12837
|
+
"filename": "src/platform/VpcV2.ts",
|
|
12838
|
+
"line": 39
|
|
12839
|
+
},
|
|
12840
|
+
"name": "fromBasePlatform",
|
|
12841
|
+
"parameters": [
|
|
12842
|
+
{
|
|
12843
|
+
"name": "scope",
|
|
12844
|
+
"type": {
|
|
12845
|
+
"fqn": "constructs.Construct"
|
|
12846
|
+
}
|
|
12847
|
+
},
|
|
12848
|
+
{
|
|
12849
|
+
"name": "id",
|
|
12850
|
+
"type": {
|
|
12851
|
+
"primitive": "string"
|
|
12852
|
+
}
|
|
12853
|
+
},
|
|
12854
|
+
{
|
|
12855
|
+
"name": "stackName",
|
|
12856
|
+
"type": {
|
|
12857
|
+
"primitive": "string"
|
|
12858
|
+
}
|
|
12859
|
+
}
|
|
12860
|
+
],
|
|
12861
|
+
"returns": {
|
|
12862
|
+
"type": {
|
|
12863
|
+
"fqn": "@btc-embedded/cdk-extensions.IVpcV2"
|
|
12864
|
+
}
|
|
12865
|
+
},
|
|
12866
|
+
"static": true
|
|
12867
|
+
}
|
|
12868
|
+
],
|
|
12869
|
+
"name": "VpcV2",
|
|
12870
|
+
"properties": [
|
|
12871
|
+
{
|
|
12872
|
+
"docs": {
|
|
12873
|
+
"stability": "experimental"
|
|
12874
|
+
},
|
|
12875
|
+
"immutable": true,
|
|
12876
|
+
"locationInModule": {
|
|
12877
|
+
"filename": "src/platform/VpcV2.ts",
|
|
12878
|
+
"line": 59
|
|
12879
|
+
},
|
|
12880
|
+
"name": "vpcInstance",
|
|
12881
|
+
"overrides": "@btc-embedded/cdk-extensions.IVpcV2",
|
|
12882
|
+
"type": {
|
|
12883
|
+
"fqn": "aws-cdk-lib.aws_ec2.IVpc"
|
|
12884
|
+
}
|
|
12885
|
+
}
|
|
12886
|
+
],
|
|
12887
|
+
"symbolId": "src/platform/VpcV2:VpcV2"
|
|
12888
|
+
},
|
|
12889
|
+
"@btc-embedded/cdk-extensions.VpcV2Props": {
|
|
12890
|
+
"assembly": "@btc-embedded/cdk-extensions",
|
|
12891
|
+
"datatype": true,
|
|
12892
|
+
"docs": {
|
|
12893
|
+
"stability": "experimental"
|
|
12894
|
+
},
|
|
12895
|
+
"fqn": "@btc-embedded/cdk-extensions.VpcV2Props",
|
|
12896
|
+
"kind": "interface",
|
|
12897
|
+
"locationInModule": {
|
|
12898
|
+
"filename": "src/platform/VpcV2.ts",
|
|
12899
|
+
"line": 10
|
|
12900
|
+
},
|
|
12901
|
+
"name": "VpcV2Props",
|
|
12902
|
+
"properties": [
|
|
12903
|
+
{
|
|
12904
|
+
"abstract": true,
|
|
12905
|
+
"docs": {
|
|
12906
|
+
"remarks": "Defaults to 2.",
|
|
12907
|
+
"stability": "experimental",
|
|
12908
|
+
"summary": "The maximum number of Availability Zones to use when creating a new VPC."
|
|
12909
|
+
},
|
|
12910
|
+
"immutable": true,
|
|
12911
|
+
"locationInModule": {
|
|
12912
|
+
"filename": "src/platform/VpcV2.ts",
|
|
12913
|
+
"line": 27
|
|
12914
|
+
},
|
|
12915
|
+
"name": "maxAzs",
|
|
12916
|
+
"optional": true,
|
|
12917
|
+
"type": {
|
|
12918
|
+
"primitive": "number"
|
|
12919
|
+
}
|
|
12920
|
+
},
|
|
12921
|
+
{
|
|
12922
|
+
"abstract": true,
|
|
12923
|
+
"docs": {
|
|
12924
|
+
"remarks": "Required when creating a new VPC.",
|
|
12925
|
+
"stability": "experimental",
|
|
12926
|
+
"summary": "The IP address allocation strategy for creating a new VPC."
|
|
12927
|
+
},
|
|
12928
|
+
"immutable": true,
|
|
12929
|
+
"locationInModule": {
|
|
12930
|
+
"filename": "src/platform/VpcV2.ts",
|
|
12931
|
+
"line": 23
|
|
12932
|
+
},
|
|
12933
|
+
"name": "vpcCidr",
|
|
12934
|
+
"optional": true,
|
|
12935
|
+
"type": {
|
|
12936
|
+
"fqn": "aws-cdk-lib.aws_ec2.IIpAddresses"
|
|
12937
|
+
}
|
|
12938
|
+
},
|
|
12939
|
+
{
|
|
12940
|
+
"abstract": true,
|
|
12941
|
+
"docs": {
|
|
12942
|
+
"remarks": "If provided, the VPC will be looked up by ID.",
|
|
12943
|
+
"stability": "experimental",
|
|
12944
|
+
"summary": "The ID of an existing VPC to import."
|
|
12945
|
+
},
|
|
12946
|
+
"immutable": true,
|
|
12947
|
+
"locationInModule": {
|
|
12948
|
+
"filename": "src/platform/VpcV2.ts",
|
|
12949
|
+
"line": 14
|
|
12950
|
+
},
|
|
12951
|
+
"name": "vpcId",
|
|
12952
|
+
"optional": true,
|
|
12953
|
+
"type": {
|
|
12954
|
+
"primitive": "string"
|
|
12955
|
+
}
|
|
12956
|
+
},
|
|
12957
|
+
{
|
|
12958
|
+
"abstract": true,
|
|
12959
|
+
"docs": {
|
|
12960
|
+
"remarks": "If importing an existing VPC, it will be looked up by this name.\nIf creating a new VPC, this will be used as the VPC name.",
|
|
12961
|
+
"stability": "experimental",
|
|
12962
|
+
"summary": "The name of the VPC."
|
|
12963
|
+
},
|
|
12964
|
+
"immutable": true,
|
|
12965
|
+
"locationInModule": {
|
|
12966
|
+
"filename": "src/platform/VpcV2.ts",
|
|
12967
|
+
"line": 19
|
|
12968
|
+
},
|
|
12969
|
+
"name": "vpcName",
|
|
12970
|
+
"optional": true,
|
|
12971
|
+
"type": {
|
|
12972
|
+
"primitive": "string"
|
|
12973
|
+
}
|
|
12974
|
+
}
|
|
12975
|
+
],
|
|
12976
|
+
"symbolId": "src/platform/VpcV2:VpcV2Props"
|
|
12278
12977
|
}
|
|
12279
12978
|
},
|
|
12280
|
-
"version": "0.
|
|
12281
|
-
"fingerprint": "
|
|
12979
|
+
"version": "0.20.0",
|
|
12980
|
+
"fingerprint": "bnBmHXzNHQi3Cr/aK6mvYIKUa3oI6slTLlx0dM3N1WQ="
|
|
12282
12981
|
}
|