@aws-cdk/region-info 2.75.1 → 2.77.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 +21 -4
- package/.jsii.tabl.json.gz +0 -0
- package/build-tools/fact-tables.d.ts +9 -1
- package/build-tools/fact-tables.js +212 -7
- package/build-tools/generate-static-data.js +2 -1
- package/lib/built-ins.generated.d.ts +1 -1
- package/lib/built-ins.generated.js +365 -2
- package/lib/default.js +1 -1
- package/lib/fact.d.ts +4 -0
- package/lib/fact.js +7 -3
- package/lib/region-info.js +1 -1
- package/package.json +22 -5
package/.jsii
CHANGED
|
@@ -369,7 +369,7 @@
|
|
|
369
369
|
},
|
|
370
370
|
"locationInModule": {
|
|
371
371
|
"filename": "lib/fact.ts",
|
|
372
|
-
"line":
|
|
372
|
+
"line": 207
|
|
373
373
|
},
|
|
374
374
|
"name": "adotLambdaLayer",
|
|
375
375
|
"parameters": [
|
|
@@ -415,7 +415,7 @@
|
|
|
415
415
|
},
|
|
416
416
|
"locationInModule": {
|
|
417
417
|
"filename": "lib/fact.ts",
|
|
418
|
-
"line":
|
|
418
|
+
"line": 182
|
|
419
419
|
},
|
|
420
420
|
"name": "cloudwatchLambdaInsightsVersion",
|
|
421
421
|
"parameters": [
|
|
@@ -447,7 +447,7 @@
|
|
|
447
447
|
},
|
|
448
448
|
"locationInModule": {
|
|
449
449
|
"filename": "lib/fact.ts",
|
|
450
|
-
"line":
|
|
450
|
+
"line": 196
|
|
451
451
|
},
|
|
452
452
|
"name": "servicePrincipal",
|
|
453
453
|
"parameters": [
|
|
@@ -506,6 +506,23 @@
|
|
|
506
506
|
"primitive": "string"
|
|
507
507
|
}
|
|
508
508
|
},
|
|
509
|
+
{
|
|
510
|
+
"const": true,
|
|
511
|
+
"docs": {
|
|
512
|
+
"stability": "stable",
|
|
513
|
+
"summary": "The default NodeJS version used for custom resource function runtimes."
|
|
514
|
+
},
|
|
515
|
+
"immutable": true,
|
|
516
|
+
"locationInModule": {
|
|
517
|
+
"filename": "lib/fact.ts",
|
|
518
|
+
"line": 177
|
|
519
|
+
},
|
|
520
|
+
"name": "DEFAULT_CR_NODE_VERSION",
|
|
521
|
+
"static": true,
|
|
522
|
+
"type": {
|
|
523
|
+
"primitive": "string"
|
|
524
|
+
}
|
|
525
|
+
},
|
|
509
526
|
{
|
|
510
527
|
"const": true,
|
|
511
528
|
"docs": {
|
|
@@ -1221,6 +1238,6 @@
|
|
|
1221
1238
|
"symbolId": "lib/region-info:RegionInfo"
|
|
1222
1239
|
}
|
|
1223
1240
|
},
|
|
1224
|
-
"version": "2.
|
|
1241
|
+
"version": "2.77.0",
|
|
1225
1242
|
"fingerprint": "**********"
|
|
1226
1243
|
}
|
package/.jsii.tabl.json.gz
CHANGED
|
Binary file
|
|
@@ -15,13 +15,21 @@ export declare const ROUTE_53_BUCKET_WEBSITE_ZONE_IDS: {
|
|
|
15
15
|
export declare const EBS_ENV_ENDPOINT_HOSTED_ZONE_IDS: {
|
|
16
16
|
[region: string]: string;
|
|
17
17
|
};
|
|
18
|
+
declare enum Partition {
|
|
19
|
+
Default = "aws",
|
|
20
|
+
Cn = "aws-cn",
|
|
21
|
+
UsGov = "aws-us-gov",
|
|
22
|
+
UsIso = "aws-iso",
|
|
23
|
+
UsIsoB = "aws-iso-b"
|
|
24
|
+
}
|
|
18
25
|
interface Region {
|
|
19
|
-
partition:
|
|
26
|
+
partition: Partition;
|
|
20
27
|
domainSuffix: string;
|
|
21
28
|
}
|
|
22
29
|
export declare const PARTITION_MAP: {
|
|
23
30
|
[region: string]: Region;
|
|
24
31
|
};
|
|
32
|
+
export declare const CR_DEFAULT_RUNTIME_MAP: Record<Partition, string>;
|
|
25
33
|
export declare const ELBV2_ACCOUNTS: {
|
|
26
34
|
[region: string]: string;
|
|
27
35
|
};
|