@aws-cdk/region-info 2.147.2 → 2.148.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 CHANGED
@@ -12,7 +12,7 @@
12
12
  "stability": "stable"
13
13
  },
14
14
  "homepage": "https://github.com/aws/aws-cdk",
15
- "jsiiVersion": "5.4.21 (build 825d1cb)",
15
+ "jsiiVersion": "5.4.25 (build 09cecf6)",
16
16
  "keywords": [
17
17
  "aws",
18
18
  "cdk"
@@ -1470,6 +1470,6 @@
1470
1470
  "symbolId": "lib/region-info:RegionInfo"
1471
1471
  }
1472
1472
  },
1473
- "version": "2.147.2",
1473
+ "version": "2.148.0",
1474
1474
  "fingerprint": "**********"
1475
1475
  }
Binary file
@@ -19,7 +19,9 @@ declare enum Partition {
19
19
  Cn = "aws-cn",
20
20
  UsGov = "aws-us-gov",
21
21
  UsIso = "aws-iso",
22
- UsIsoB = "aws-iso-b"
22
+ UsIsoB = "aws-iso-b",
23
+ UsIsoF = "aws-iso-f",
24
+ EuIsoE = "aws-iso-e"
23
25
  }
24
26
  interface Region {
25
27
  partition: Partition;
@@ -28,6 +30,8 @@ interface Region {
28
30
  export declare const PARTITION_MAP: {
29
31
  [region: string]: Region;
30
32
  };
33
+ export declare const PARTITION_SAML_SIGN_ON_URL: Partial<Record<Partition, string>>;
34
+ export declare const LATEST_NODE_RUNTIME_MAP: Record<Partition, string>;
31
35
  export declare const ELBV2_ACCOUNTS: {
32
36
  [region: string]: string;
33
37
  };
@@ -56,6 +60,4 @@ export declare const PARAMS_AND_SECRETS_LAMBDA_LAYER_ARNS: {
56
60
  export declare const ADOT_LAMBDA_LAYER_ARNS: {
57
61
  [key: string]: any;
58
62
  };
59
- export declare const PARTITION_SAML_SIGN_ON_URL: Record<Partition, string>;
60
- export declare const LATEST_NODE_RUNTIME_MAP: Record<Partition, string>;
61
63
  export {};