Skip to content

Commit 6ae48e9

Browse files
chore(clients): update endpoints as of 11/18/2021 (#3042)
Co-authored-by: AllanZhengYP <[email protected]>
1 parent d65a310 commit 6ae48e9

File tree

4 files changed

+119
-95
lines changed

4 files changed

+119
-95
lines changed

clients/client-dynamodb-streams/src/endpoints.ts

Lines changed: 9 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,6 @@ import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolv
22
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";
33

44
const regionHash: RegionHash = {
5-
"ca-central-1-fips": {
6-
variants: [
7-
{
8-
hostname: "dynamodb-fips.ca-central-1.amazonaws.com",
9-
tags: [],
10-
},
11-
],
12-
signingRegion: "ca-central-1",
13-
},
145
local: {
156
variants: [
167
{
@@ -20,59 +11,29 @@ const regionHash: RegionHash = {
2011
],
2112
signingRegion: "us-east-1",
2213
},
23-
"us-east-1-fips": {
24-
variants: [
25-
{
26-
hostname: "dynamodb-fips.us-east-1.amazonaws.com",
27-
tags: [],
28-
},
29-
],
30-
signingRegion: "us-east-1",
31-
},
32-
"us-east-2-fips": {
14+
"us-gov-east-1": {
3315
variants: [
3416
{
35-
hostname: "dynamodb-fips.us-east-2.amazonaws.com",
17+
hostname: "streams.dynamodb.us-gov-east-1.amazonaws.com",
3618
tags: [],
3719
},
38-
],
39-
signingRegion: "us-east-2",
40-
},
41-
"us-gov-east-1-fips": {
42-
variants: [
4320
{
44-
hostname: "dynamodb.us-gov-east-1.amazonaws.com",
45-
tags: [],
21+
hostname: "streams.dynamodb.us-gov-east-1.amazonaws.com",
22+
tags: ["fips"],
4623
},
4724
],
48-
signingRegion: "us-gov-east-1",
4925
},
50-
"us-gov-west-1-fips": {
26+
"us-gov-west-1": {
5127
variants: [
5228
{
53-
hostname: "dynamodb.us-gov-west-1.amazonaws.com",
29+
hostname: "streams.dynamodb.us-gov-west-1.amazonaws.com",
5430
tags: [],
5531
},
56-
],
57-
signingRegion: "us-gov-west-1",
58-
},
59-
"us-west-1-fips": {
60-
variants: [
6132
{
62-
hostname: "dynamodb-fips.us-west-1.amazonaws.com",
63-
tags: [],
64-
},
65-
],
66-
signingRegion: "us-west-1",
67-
},
68-
"us-west-2-fips": {
69-
variants: [
70-
{
71-
hostname: "dynamodb-fips.us-west-2.amazonaws.com",
72-
tags: [],
33+
hostname: "streams.dynamodb.us-gov-west-1.amazonaws.com",
34+
tags: ["fips"],
7335
},
7436
],
75-
signingRegion: "us-west-2",
7637
},
7738
};
7839

@@ -88,7 +49,6 @@ const partitionHash: PartitionHash = {
8849
"ap-southeast-1",
8950
"ap-southeast-2",
9051
"ca-central-1",
91-
"ca-central-1-fips",
9252
"eu-central-1",
9353
"eu-north-1",
9454
"eu-south-1",
@@ -99,13 +59,9 @@ const partitionHash: PartitionHash = {
9959
"me-south-1",
10060
"sa-east-1",
10161
"us-east-1",
102-
"us-east-1-fips",
10362
"us-east-2",
104-
"us-east-2-fips",
10563
"us-west-1",
106-
"us-west-1-fips",
10764
"us-west-2",
108-
"us-west-2-fips",
10965
],
11066
regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
11167
variants: [
@@ -186,7 +142,7 @@ const partitionHash: PartitionHash = {
186142
tags: [],
187143
},
188144
{
189-
hostname: "streams.dynamodb-fips.{region}.amazonaws.com",
145+
hostname: "streams.dynamodb.{region}.amazonaws.com",
190146
tags: ["fips"],
191147
},
192148
{

clients/client-kms/src/endpoints.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,7 @@ const partitionHash: PartitionHash = {
335335
"ap-southeast-1-fips",
336336
"ap-southeast-2",
337337
"ap-southeast-2-fips",
338+
"ap-southeast-3-fips",
338339
"ca-central-1",
339340
"ca-central-1-fips",
340341
"eu-central-1",

codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/endpoints.json

Lines changed: 108 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,6 +1048,31 @@
10481048
"us-west-2": {}
10491049
}
10501050
},
1051+
"appconfigdata": {
1052+
"endpoints": {
1053+
"af-south-1": {},
1054+
"ap-east-1": {},
1055+
"ap-northeast-1": {},
1056+
"ap-northeast-2": {},
1057+
"ap-northeast-3": {},
1058+
"ap-south-1": {},
1059+
"ap-southeast-1": {},
1060+
"ap-southeast-2": {},
1061+
"ca-central-1": {},
1062+
"eu-central-1": {},
1063+
"eu-north-1": {},
1064+
"eu-south-1": {},
1065+
"eu-west-1": {},
1066+
"eu-west-2": {},
1067+
"eu-west-3": {},
1068+
"me-south-1": {},
1069+
"sa-east-1": {},
1070+
"us-east-1": {},
1071+
"us-east-2": {},
1072+
"us-west-1": {},
1073+
"us-west-2": {}
1074+
}
1075+
},
10511076
"appflow": {
10521077
"endpoints": {
10531078
"af-south-1": {},
@@ -3478,6 +3503,19 @@
34783503
}
34793504
}
34803505
},
3506+
"drs": {
3507+
"endpoints": {
3508+
"ap-northeast-1": {},
3509+
"ap-southeast-1": {},
3510+
"ap-southeast-2": {},
3511+
"eu-central-1": {},
3512+
"eu-west-1": {},
3513+
"eu-west-2": {},
3514+
"us-east-1": {},
3515+
"us-east-2": {},
3516+
"us-west-2": {}
3517+
}
3518+
},
34813519
"ds": {
34823520
"endpoints": {
34833521
"af-south-1": {},
@@ -7081,6 +7119,13 @@
70817119
"deprecated": true,
70827120
"hostname": "kms-fips.ap-southeast-2.amazonaws.com"
70837121
},
7122+
"ap-southeast-3-fips": {
7123+
"credentialScope": {
7124+
"region": "ap-southeast-3"
7125+
},
7126+
"deprecated": true,
7127+
"hostname": "kms-fips.ap-southeast-3.amazonaws.com"
7128+
},
70847129
"ca-central-1": {
70857130
"variants": [
70867131
{
@@ -8057,6 +8102,7 @@
80578102
},
80588103
"mgn": {
80598104
"endpoints": {
8105+
"af-south-1": {},
80608106
"ap-east-1": {},
80618107
"ap-northeast-1": {},
80628108
"ap-northeast-2": {},
@@ -8067,15 +8113,29 @@
80678113
"ca-central-1": {},
80688114
"eu-central-1": {},
80698115
"eu-north-1": {},
8116+
"eu-south-1": {},
80708117
"eu-west-1": {},
80718118
"eu-west-2": {},
8119+
"eu-west-3": {},
8120+
"me-south-1": {},
80728121
"sa-east-1": {},
80738122
"us-east-1": {},
80748123
"us-east-2": {},
80758124
"us-west-1": {},
80768125
"us-west-2": {}
80778126
}
80788127
},
8128+
"migrationhub-strategy": {
8129+
"endpoints": {
8130+
"ap-northeast-1": {},
8131+
"ap-southeast-2": {},
8132+
"eu-central-1": {},
8133+
"eu-west-1": {},
8134+
"eu-west-2": {},
8135+
"us-east-1": {},
8136+
"us-west-2": {}
8137+
}
8138+
},
80798139
"mobileanalytics": {
80808140
"endpoints": {
80818141
"us-east-1": {}
@@ -9067,6 +9127,7 @@
90679127
"ap-northeast-2": {},
90689128
"ap-southeast-1": {},
90699129
"ap-southeast-2": {},
9130+
"ca-central-1": {},
90709131
"eu-central-1": {},
90719132
"eu-west-1": {},
90729133
"eu-west-2": {},
@@ -11225,6 +11286,7 @@
1122511286
"ap-northeast-2": {},
1122611287
"ap-southeast-1": {},
1122711288
"ap-southeast-2": {},
11289+
"ca-central-1": {},
1122811290
"eu-central-1": {},
1122911291
"eu-west-1": {},
1123011292
"eu-west-2": {},
@@ -12108,20 +12170,18 @@
1210812170
"protocols": ["http", "https"]
1210912171
},
1211012172
"endpoints": {
12173+
"af-south-1": {},
12174+
"ap-east-1": {},
1211112175
"ap-northeast-1": {},
1211212176
"ap-northeast-2": {},
12177+
"ap-northeast-3": {},
1211312178
"ap-south-1": {},
1211412179
"ap-southeast-1": {},
1211512180
"ap-southeast-2": {},
1211612181
"ca-central-1": {},
12117-
"ca-central-1-fips": {
12118-
"credentialScope": {
12119-
"region": "ca-central-1"
12120-
},
12121-
"hostname": "dynamodb-fips.ca-central-1.amazonaws.com"
12122-
},
1212312182
"eu-central-1": {},
1212412183
"eu-north-1": {},
12184+
"eu-south-1": {},
1212512185
"eu-west-1": {},
1212612186
"eu-west-2": {},
1212712187
"eu-west-3": {},
@@ -12135,33 +12195,9 @@
1213512195
"me-south-1": {},
1213612196
"sa-east-1": {},
1213712197
"us-east-1": {},
12138-
"us-east-1-fips": {
12139-
"credentialScope": {
12140-
"region": "us-east-1"
12141-
},
12142-
"hostname": "dynamodb-fips.us-east-1.amazonaws.com"
12143-
},
1214412198
"us-east-2": {},
12145-
"us-east-2-fips": {
12146-
"credentialScope": {
12147-
"region": "us-east-2"
12148-
},
12149-
"hostname": "dynamodb-fips.us-east-2.amazonaws.com"
12150-
},
1215112199
"us-west-1": {},
12152-
"us-west-1-fips": {
12153-
"credentialScope": {
12154-
"region": "us-west-1"
12155-
},
12156-
"hostname": "dynamodb-fips.us-west-1.amazonaws.com"
12157-
},
12158-
"us-west-2": {},
12159-
"us-west-2-fips": {
12160-
"credentialScope": {
12161-
"region": "us-west-2"
12162-
},
12163-
"hostname": "dynamodb-fips.us-west-2.amazonaws.com"
12164-
}
12200+
"us-west-2": {}
1216512201
}
1216612202
},
1216712203
"sts": {
@@ -13539,6 +13575,12 @@
1353913575
"cn-northwest-1": {}
1354013576
}
1354113577
},
13578+
"appconfigdata": {
13579+
"endpoints": {
13580+
"cn-north-1": {},
13581+
"cn-northwest-1": {}
13582+
}
13583+
},
1354213584
"application-autoscaling": {
1354313585
"defaults": {
1354413586
"protocols": ["http", "https"]
@@ -14764,6 +14806,12 @@
1476414806
"us-gov-west-1": {}
1476514807
}
1476614808
},
14809+
"appconfigdata": {
14810+
"endpoints": {
14811+
"us-gov-east-1": {},
14812+
"us-gov-west-1": {}
14813+
}
14814+
},
1476714815
"application-autoscaling": {
1476814816
"defaults": {
1476914817
"protocols": ["http", "https"]
@@ -17779,22 +17827,44 @@
1777917827
"defaults": {
1778017828
"credentialScope": {
1778117829
"service": "dynamodb"
17782-
}
17830+
},
17831+
"variants": [
17832+
{
17833+
"hostname": "streams.dynamodb.{region}.{dnsSuffix}",
17834+
"tags": ["fips"]
17835+
}
17836+
]
1778317837
},
1778417838
"endpoints": {
17785-
"us-gov-east-1": {},
17839+
"us-gov-east-1": {
17840+
"variants": [
17841+
{
17842+
"hostname": "streams.dynamodb.us-gov-east-1.amazonaws.com",
17843+
"tags": ["fips"]
17844+
}
17845+
]
17846+
},
1778617847
"us-gov-east-1-fips": {
1778717848
"credentialScope": {
1778817849
"region": "us-gov-east-1"
1778917850
},
17790-
"hostname": "dynamodb.us-gov-east-1.amazonaws.com"
17851+
"deprecated": true,
17852+
"hostname": "streams.dynamodb.us-gov-east-1.amazonaws.com"
17853+
},
17854+
"us-gov-west-1": {
17855+
"variants": [
17856+
{
17857+
"hostname": "streams.dynamodb.us-gov-west-1.amazonaws.com",
17858+
"tags": ["fips"]
17859+
}
17860+
]
1779117861
},
17792-
"us-gov-west-1": {},
1779317862
"us-gov-west-1-fips": {
1779417863
"credentialScope": {
1779517864
"region": "us-gov-west-1"
1779617865
},
17797-
"hostname": "dynamodb.us-gov-west-1.amazonaws.com"
17866+
"deprecated": true,
17867+
"hostname": "streams.dynamodb.us-gov-west-1.amazonaws.com"
1779817868
}
1779917869
}
1780017870
},
@@ -18569,13 +18639,10 @@
1856918639
"defaults": {
1857018640
"credentialScope": {
1857118641
"service": "dynamodb"
18572-
},
18573-
"protocols": ["http", "https"]
18642+
}
1857418643
},
1857518644
"endpoints": {
18576-
"us-iso-east-1": {
18577-
"protocols": ["http", "https"]
18578-
}
18645+
"us-iso-east-1": {}
1857918646
}
1858018647
},
1858118648
"sts": {

0 commit comments

Comments
 (0)