aws-sdk-core 2.6.17 → 2.6.18

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c2e13d3dfc21f54203c8ec08d70169df9e3d3c08
4
- data.tar.gz: 2966dd27bc8e01710ca8808a757b27696ff29fcc
3
+ metadata.gz: 97c3aac1a9a6efaed5835a38cad090c6d3afb366
4
+ data.tar.gz: 29990377f0a2c948545739f72a35cacd0a9969aa
5
5
  SHA512:
6
- metadata.gz: 398a939e7bd4fd8a1c1b8ca87408c9a8e5c43590322b118982b6712f55727100cac9252f41694373814a4315f51451eeb11990c062ce45887f4ae4436bba93fe
7
- data.tar.gz: fc4260ad2f3d5c60e4cfad78f49a297b538fed680d0d3a88b860c1910c8f31b57a6280ccd6790d8667bac213c190b6cbcd2506ce4726ccc7fb169b846cea836c
6
+ metadata.gz: be5e82aa8d86917cdbdca04f32fd1e3711300e8305c369aa780d213f66d9086ba5acc4ca2e82e1030bb1cb23849dc929cd2c24d96d393c967d36a204a1d974b5
7
+ data.tar.gz: 4baa9ffdce49f7536414219bec85246758819abf7ab65dd44b127925d5406314bdc2325aa5e69b4d585242f2a63df68b3e2e89f585f1fedb2e82c3f3b4744eee
@@ -256,6 +256,19 @@
256
256
  {"shape":"DirectConnectClientException"}
257
257
  ]
258
258
  },
259
+ "DescribeTags":{
260
+ "name":"DescribeTags",
261
+ "http":{
262
+ "method":"POST",
263
+ "requestUri":"/"
264
+ },
265
+ "input":{"shape":"DescribeTagsRequest"},
266
+ "output":{"shape":"DescribeTagsResponse"},
267
+ "errors":[
268
+ {"shape":"DirectConnectServerException"},
269
+ {"shape":"DirectConnectClientException"}
270
+ ]
271
+ },
259
272
  "DescribeVirtualGateways":{
260
273
  "name":"DescribeVirtualGateways",
261
274
  "http":{
@@ -280,6 +293,34 @@
280
293
  {"shape":"DirectConnectServerException"},
281
294
  {"shape":"DirectConnectClientException"}
282
295
  ]
296
+ },
297
+ "TagResource":{
298
+ "name":"TagResource",
299
+ "http":{
300
+ "method":"POST",
301
+ "requestUri":"/"
302
+ },
303
+ "input":{"shape":"TagResourceRequest"},
304
+ "output":{"shape":"TagResourceResponse"},
305
+ "errors":[
306
+ {"shape":"DuplicateTagKeysException"},
307
+ {"shape":"TooManyTagsException"},
308
+ {"shape":"DirectConnectServerException"},
309
+ {"shape":"DirectConnectClientException"}
310
+ ]
311
+ },
312
+ "UntagResource":{
313
+ "name":"UntagResource",
314
+ "http":{
315
+ "method":"POST",
316
+ "requestUri":"/"
317
+ },
318
+ "input":{"shape":"UntagResourceRequest"},
319
+ "output":{"shape":"UntagResourceResponse"},
320
+ "errors":[
321
+ {"shape":"DirectConnectServerException"},
322
+ {"shape":"DirectConnectClientException"}
323
+ ]
283
324
  }
284
325
  },
285
326
  "shapes":{
@@ -545,6 +586,19 @@
545
586
  "interconnectId":{"shape":"InterconnectId"}
546
587
  }
547
588
  },
589
+ "DescribeTagsRequest":{
590
+ "type":"structure",
591
+ "required":["resourceArns"],
592
+ "members":{
593
+ "resourceArns":{"shape":"ResourceArnList"}
594
+ }
595
+ },
596
+ "DescribeTagsResponse":{
597
+ "type":"structure",
598
+ "members":{
599
+ "resourceTags":{"shape":"ResourceTagList"}
600
+ }
601
+ },
548
602
  "DescribeVirtualInterfacesRequest":{
549
603
  "type":"structure",
550
604
  "members":{
@@ -566,6 +620,12 @@
566
620
  },
567
621
  "exception":true
568
622
  },
623
+ "DuplicateTagKeysException":{
624
+ "type":"structure",
625
+ "members":{
626
+ },
627
+ "exception":true
628
+ },
569
629
  "ErrorMessage":{"type":"string"},
570
630
  "Interconnect":{
571
631
  "type":"structure",
@@ -712,6 +772,22 @@
712
772
  "PartnerName":{"type":"string"},
713
773
  "ProviderName":{"type":"string"},
714
774
  "Region":{"type":"string"},
775
+ "ResourceArn":{"type":"string"},
776
+ "ResourceArnList":{
777
+ "type":"list",
778
+ "member":{"shape":"ResourceArn"}
779
+ },
780
+ "ResourceTag":{
781
+ "type":"structure",
782
+ "members":{
783
+ "resourceArn":{"shape":"ResourceArn"},
784
+ "tags":{"shape":"TagList"}
785
+ }
786
+ },
787
+ "ResourceTagList":{
788
+ "type":"list",
789
+ "member":{"shape":"ResourceTag"}
790
+ },
715
791
  "RouteFilterPrefix":{
716
792
  "type":"structure",
717
793
  "members":{
@@ -723,6 +799,73 @@
723
799
  "member":{"shape":"RouteFilterPrefix"}
724
800
  },
725
801
  "RouterConfig":{"type":"string"},
802
+ "Tag":{
803
+ "type":"structure",
804
+ "required":["key"],
805
+ "members":{
806
+ "key":{"shape":"TagKey"},
807
+ "value":{"shape":"TagValue"}
808
+ }
809
+ },
810
+ "TagKey":{
811
+ "type":"string",
812
+ "max":128,
813
+ "min":1,
814
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
815
+ },
816
+ "TagKeyList":{
817
+ "type":"list",
818
+ "member":{"shape":"TagKey"}
819
+ },
820
+ "TagList":{
821
+ "type":"list",
822
+ "member":{"shape":"Tag"},
823
+ "min":1
824
+ },
825
+ "TagResourceRequest":{
826
+ "type":"structure",
827
+ "required":[
828
+ "resourceArn",
829
+ "tags"
830
+ ],
831
+ "members":{
832
+ "resourceArn":{"shape":"ResourceArn"},
833
+ "tags":{"shape":"TagList"}
834
+ }
835
+ },
836
+ "TagResourceResponse":{
837
+ "type":"structure",
838
+ "members":{
839
+ }
840
+ },
841
+ "TagValue":{
842
+ "type":"string",
843
+ "max":256,
844
+ "min":0,
845
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
846
+ },
847
+ "TooManyTagsException":{
848
+ "type":"structure",
849
+ "members":{
850
+ },
851
+ "exception":true
852
+ },
853
+ "UntagResourceRequest":{
854
+ "type":"structure",
855
+ "required":[
856
+ "resourceArn",
857
+ "tagKeys"
858
+ ],
859
+ "members":{
860
+ "resourceArn":{"shape":"ResourceArn"},
861
+ "tagKeys":{"shape":"TagKeyList"}
862
+ }
863
+ },
864
+ "UntagResourceResponse":{
865
+ "type":"structure",
866
+ "members":{
867
+ }
868
+ },
726
869
  "VLAN":{"type":"integer"},
727
870
  "VirtualGateway":{
728
871
  "type":"structure",
@@ -1,11 +1,6 @@
1
1
  {
2
- "version": 3,
3
2
  "partitions": [
4
3
  {
5
- "partition": "aws",
6
- "partitionName": "AWS Standard",
7
- "regionRegex": "^(us|eu|ap|sa|ca)\\-\\w+\\-\\d+$",
8
- "dnsSuffix": "amazonaws.com",
9
4
  "defaults": {
10
5
  "hostname": "{service}.{region}.{dnsSuffix}",
11
6
  "protocols": [
@@ -15,95 +10,99 @@
15
10
  "v4"
16
11
  ]
17
12
  },
13
+ "dnsSuffix": "amazonaws.com",
14
+ "partition": "aws",
15
+ "partitionName": "AWS Standard",
16
+ "regionRegex": "^(us|eu|ap|sa|ca)\\-\\w+\\-\\d+$",
18
17
  "regions": {
18
+ "ap-northeast-1": {
19
+ "description": "Asia Pacific (Tokyo)"
20
+ },
19
21
  "ap-northeast-2": {
20
22
  "description": "Asia Pacific (Seoul)"
21
23
  },
22
24
  "ap-south-1": {
23
25
  "description": "Asia Pacific (Mumbai)"
24
26
  },
27
+ "ap-southeast-1": {
28
+ "description": "Asia Pacific (Singapore)"
29
+ },
25
30
  "ap-southeast-2": {
26
31
  "description": "Asia Pacific (Sydney)"
27
32
  },
28
33
  "eu-central-1": {
29
34
  "description": "EU (Frankfurt)"
30
35
  },
31
- "us-west-2": {
32
- "description": "US West (Oregon)"
33
- },
34
- "us-west-1": {
35
- "description": "US West (N. California)"
36
+ "eu-west-1": {
37
+ "description": "EU (Ireland)"
36
38
  },
37
39
  "sa-east-1": {
38
40
  "description": "South America (Sao Paulo)"
39
41
  },
40
- "ap-northeast-1": {
41
- "description": "Asia Pacific (Tokyo)"
42
+ "us-east-1": {
43
+ "description": "US East (N. Virginia)"
42
44
  },
43
45
  "us-east-2": {
44
46
  "description": "US East (Ohio)"
45
47
  },
46
- "us-east-1": {
47
- "description": "US East (N. Virginia)"
48
- },
49
- "ap-southeast-1": {
50
- "description": "Asia Pacific (Singapore)"
48
+ "us-west-1": {
49
+ "description": "US West (N. California)"
51
50
  },
52
- "eu-west-1": {
53
- "description": "EU (Ireland)"
51
+ "us-west-2": {
52
+ "description": "US West (Oregon)"
54
53
  }
55
54
  },
56
55
  "services": {
57
56
  "acm": {
58
57
  "endpoints": {
58
+ "ap-northeast-1": {},
59
59
  "ap-northeast-2": {},
60
60
  "ap-south-1": {},
61
+ "ap-southeast-1": {},
61
62
  "ap-southeast-2": {},
62
63
  "eu-central-1": {},
63
- "us-west-2": {},
64
- "us-west-1": {},
64
+ "eu-west-1": {},
65
65
  "sa-east-1": {},
66
- "ap-northeast-1": {},
67
- "us-east-2": {},
68
66
  "us-east-1": {},
69
- "ap-southeast-1": {},
70
- "eu-west-1": {}
67
+ "us-east-2": {},
68
+ "us-west-1": {},
69
+ "us-west-2": {}
71
70
  }
72
71
  },
73
72
  "apigateway": {
74
73
  "endpoints": {
74
+ "ap-northeast-1": {},
75
75
  "ap-northeast-2": {},
76
+ "ap-southeast-1": {},
76
77
  "ap-southeast-2": {},
77
78
  "eu-central-1": {},
78
- "us-west-2": {},
79
- "ap-northeast-1": {},
80
- "us-east-2": {},
79
+ "eu-west-1": {},
81
80
  "us-east-1": {},
82
- "ap-southeast-1": {},
83
- "eu-west-1": {}
81
+ "us-east-2": {},
82
+ "us-west-2": {}
84
83
  }
85
84
  },
86
85
  "application-autoscaling": {
87
- "endpoints": {
88
- "ap-southeast-2": {},
89
- "eu-central-1": {},
90
- "us-west-2": {},
91
- "us-west-1": {},
92
- "ap-northeast-1": {},
93
- "us-east-2": {},
94
- "us-east-1": {},
95
- "ap-southeast-1": {},
96
- "eu-west-1": {}
97
- },
98
86
  "defaults": {
99
- "hostname": "autoscaling.{region}.amazonaws.com",
100
87
  "credentialScope": {
101
88
  "service": "application-autoscaling"
102
89
  },
90
+ "hostname": "autoscaling.{region}.amazonaws.com",
103
91
  "protocols": [
104
92
  "http",
105
93
  "https"
106
94
  ]
95
+ },
96
+ "endpoints": {
97
+ "ap-northeast-1": {},
98
+ "ap-southeast-1": {},
99
+ "ap-southeast-2": {},
100
+ "eu-central-1": {},
101
+ "eu-west-1": {},
102
+ "us-east-1": {},
103
+ "us-east-2": {},
104
+ "us-west-1": {},
105
+ "us-west-2": {}
107
106
  }
108
107
  },
109
108
  "appstream": {
@@ -113,34 +112,34 @@
113
112
  }
114
113
  },
115
114
  "autoscaling": {
115
+ "defaults": {
116
+ "protocols": [
117
+ "http",
118
+ "https"
119
+ ]
120
+ },
116
121
  "endpoints": {
122
+ "ap-northeast-1": {},
117
123
  "ap-northeast-2": {},
118
124
  "ap-south-1": {},
125
+ "ap-southeast-1": {},
119
126
  "ap-southeast-2": {},
120
127
  "eu-central-1": {},
121
- "us-west-2": {},
122
- "us-west-1": {},
128
+ "eu-west-1": {},
123
129
  "sa-east-1": {},
124
- "ap-northeast-1": {},
125
- "us-east-2": {},
126
130
  "us-east-1": {},
127
- "ap-southeast-1": {},
128
- "eu-west-1": {}
129
- },
130
- "defaults": {
131
- "protocols": [
132
- "http",
133
- "https"
134
- ]
131
+ "us-east-2": {},
132
+ "us-west-1": {},
133
+ "us-west-2": {}
135
134
  }
136
135
  },
137
136
  "budgets": {
138
137
  "endpoints": {
139
138
  "aws-global": {
140
- "hostname": "budgets.amazonaws.com",
141
139
  "credentialScope": {
142
140
  "region": "us-east-1"
143
- }
141
+ },
142
+ "hostname": "budgets.amazonaws.com"
144
143
  }
145
144
  },
146
145
  "isRegionalized": false,
@@ -148,184 +147,184 @@
148
147
  },
149
148
  "cloudformation": {
150
149
  "endpoints": {
150
+ "ap-northeast-1": {},
151
151
  "ap-northeast-2": {},
152
152
  "ap-south-1": {},
153
+ "ap-southeast-1": {},
153
154
  "ap-southeast-2": {},
154
155
  "eu-central-1": {},
155
- "us-west-2": {},
156
- "us-west-1": {},
156
+ "eu-west-1": {},
157
157
  "sa-east-1": {},
158
- "ap-northeast-1": {},
159
- "us-east-2": {},
160
158
  "us-east-1": {},
161
- "ap-southeast-1": {},
162
- "eu-west-1": {}
159
+ "us-east-2": {},
160
+ "us-west-1": {},
161
+ "us-west-2": {}
163
162
  }
164
163
  },
165
164
  "cloudfront": {
166
165
  "endpoints": {
167
166
  "aws-global": {
167
+ "credentialScope": {
168
+ "region": "us-east-1"
169
+ },
168
170
  "hostname": "cloudfront.amazonaws.com",
169
171
  "protocols": [
170
172
  "http",
171
173
  "https"
172
- ],
173
- "credentialScope": {
174
- "region": "us-east-1"
175
- }
174
+ ]
176
175
  }
177
176
  },
178
- "partitionEndpoint": "aws-global",
179
- "isRegionalized": false
177
+ "isRegionalized": false,
178
+ "partitionEndpoint": "aws-global"
180
179
  },
181
180
  "cloudhsm": {
182
181
  "endpoints": {
182
+ "ap-northeast-1": {},
183
+ "ap-southeast-1": {},
183
184
  "ap-southeast-2": {},
184
185
  "eu-central-1": {},
185
- "us-west-2": {},
186
- "us-west-1": {},
187
- "ap-northeast-1": {},
188
- "us-east-2": {},
186
+ "eu-west-1": {},
189
187
  "us-east-1": {},
190
- "ap-southeast-1": {},
191
- "eu-west-1": {}
188
+ "us-east-2": {},
189
+ "us-west-1": {},
190
+ "us-west-2": {}
192
191
  }
193
192
  },
194
193
  "cloudsearch": {
195
194
  "endpoints": {
195
+ "ap-northeast-1": {},
196
196
  "ap-northeast-2": {},
197
+ "ap-southeast-1": {},
197
198
  "ap-southeast-2": {},
198
199
  "eu-central-1": {},
199
- "us-west-2": {},
200
- "us-west-1": {},
200
+ "eu-west-1": {},
201
201
  "sa-east-1": {},
202
- "ap-northeast-1": {},
203
202
  "us-east-1": {},
204
- "ap-southeast-1": {},
205
- "eu-west-1": {}
203
+ "us-west-1": {},
204
+ "us-west-2": {}
206
205
  }
207
206
  },
208
207
  "cloudtrail": {
209
208
  "endpoints": {
209
+ "ap-northeast-1": {},
210
210
  "ap-northeast-2": {},
211
211
  "ap-south-1": {},
212
+ "ap-southeast-1": {},
212
213
  "ap-southeast-2": {},
213
214
  "eu-central-1": {},
214
- "us-west-2": {},
215
- "us-west-1": {},
215
+ "eu-west-1": {},
216
216
  "sa-east-1": {},
217
- "ap-northeast-1": {},
218
- "us-east-2": {},
219
217
  "us-east-1": {},
220
- "ap-southeast-1": {},
221
- "eu-west-1": {}
218
+ "us-east-2": {},
219
+ "us-west-1": {},
220
+ "us-west-2": {}
222
221
  }
223
222
  },
224
223
  "codecommit": {
225
224
  "endpoints": {
226
- "us-east-2": {},
227
- "us-east-1": {}
225
+ "us-east-1": {},
226
+ "us-east-2": {}
228
227
  }
229
228
  },
230
229
  "codedeploy": {
231
230
  "endpoints": {
231
+ "ap-northeast-1": {},
232
232
  "ap-northeast-2": {},
233
233
  "ap-south-1": {},
234
+ "ap-southeast-1": {},
234
235
  "ap-southeast-2": {},
235
236
  "eu-central-1": {},
236
- "us-west-2": {},
237
- "us-west-1": {},
237
+ "eu-west-1": {},
238
238
  "sa-east-1": {},
239
- "ap-northeast-1": {},
240
- "us-east-2": {},
241
239
  "us-east-1": {},
242
- "ap-southeast-1": {},
243
- "eu-west-1": {}
240
+ "us-east-2": {},
241
+ "us-west-1": {},
242
+ "us-west-2": {}
244
243
  }
245
244
  },
246
245
  "codepipeline": {
247
246
  "endpoints": {
247
+ "ap-southeast-1": {},
248
248
  "ap-southeast-2": {},
249
- "us-west-2": {},
250
- "us-east-2": {},
249
+ "eu-west-1": {},
251
250
  "us-east-1": {},
252
- "ap-southeast-1": {},
253
- "eu-west-1": {}
251
+ "us-east-2": {},
252
+ "us-west-2": {}
254
253
  }
255
254
  },
256
255
  "cognito-identity": {
257
256
  "endpoints": {
257
+ "ap-northeast-1": {},
258
258
  "ap-northeast-2": {},
259
259
  "eu-central-1": {},
260
- "us-west-2": {},
261
- "ap-northeast-1": {},
260
+ "eu-west-1": {},
262
261
  "us-east-1": {},
263
- "eu-west-1": {}
262
+ "us-west-2": {}
264
263
  }
265
264
  },
266
265
  "cognito-idp": {
267
266
  "endpoints": {
267
+ "ap-northeast-1": {},
268
268
  "ap-northeast-2": {},
269
269
  "eu-central-1": {},
270
- "us-west-2": {},
271
- "ap-northeast-1": {},
270
+ "eu-west-1": {},
272
271
  "us-east-1": {},
273
- "eu-west-1": {}
272
+ "us-west-2": {}
274
273
  }
275
274
  },
276
275
  "cognito-sync": {
277
276
  "endpoints": {
277
+ "ap-northeast-1": {},
278
278
  "ap-northeast-2": {},
279
279
  "eu-central-1": {},
280
- "us-west-2": {},
281
- "ap-northeast-1": {},
280
+ "eu-west-1": {},
282
281
  "us-east-1": {},
283
- "eu-west-1": {}
282
+ "us-west-2": {}
284
283
  }
285
284
  },
286
285
  "config": {
287
286
  "endpoints": {
287
+ "ap-northeast-1": {},
288
288
  "ap-northeast-2": {},
289
289
  "ap-south-1": {},
290
+ "ap-southeast-1": {},
290
291
  "ap-southeast-2": {},
291
292
  "eu-central-1": {},
292
- "us-west-2": {},
293
- "us-west-1": {},
293
+ "eu-west-1": {},
294
294
  "sa-east-1": {},
295
- "ap-northeast-1": {},
296
- "us-east-2": {},
297
295
  "us-east-1": {},
298
- "ap-southeast-1": {},
299
- "eu-west-1": {}
296
+ "us-east-2": {},
297
+ "us-west-1": {},
298
+ "us-west-2": {}
300
299
  }
301
300
  },
302
301
  "data.iot": {
302
+ "defaults": {
303
+ "credentialScope": {
304
+ "service": "iotdata"
305
+ },
306
+ "protocols": [
307
+ "https"
308
+ ]
309
+ },
303
310
  "endpoints": {
311
+ "ap-northeast-1": {},
304
312
  "ap-northeast-2": {},
313
+ "ap-southeast-1": {},
305
314
  "ap-southeast-2": {},
306
315
  "eu-central-1": {},
307
- "us-west-2": {},
308
- "ap-northeast-1": {},
316
+ "eu-west-1": {},
309
317
  "us-east-1": {},
310
- "ap-southeast-1": {},
311
- "eu-west-1": {}
312
- },
313
- "defaults": {
314
- "protocols": [
315
- "https"
316
- ],
317
- "credentialScope": {
318
- "service": "iotdata"
319
- }
318
+ "us-west-2": {}
320
319
  }
321
320
  },
322
321
  "datapipeline": {
323
322
  "endpoints": {
324
- "ap-southeast-2": {},
325
- "us-west-2": {},
326
323
  "ap-northeast-1": {},
324
+ "ap-southeast-2": {},
325
+ "eu-west-1": {},
327
326
  "us-east-1": {},
328
- "eu-west-1": {}
327
+ "us-west-2": {}
329
328
  }
330
329
  },
331
330
  "devicefarm": {
@@ -335,18 +334,18 @@
335
334
  },
336
335
  "directconnect": {
337
336
  "endpoints": {
337
+ "ap-northeast-1": {},
338
338
  "ap-northeast-2": {},
339
339
  "ap-south-1": {},
340
+ "ap-southeast-1": {},
340
341
  "ap-southeast-2": {},
341
342
  "eu-central-1": {},
342
- "us-west-2": {},
343
- "us-west-1": {},
343
+ "eu-west-1": {},
344
344
  "sa-east-1": {},
345
- "ap-northeast-1": {},
346
- "us-east-2": {},
347
345
  "us-east-1": {},
348
- "ap-southeast-1": {},
349
- "eu-west-1": {}
346
+ "us-east-2": {},
347
+ "us-west-1": {},
348
+ "us-west-2": {}
350
349
  }
351
350
  },
352
351
  "discovery": {
@@ -356,292 +355,292 @@
356
355
  },
357
356
  "dms": {
358
357
  "endpoints": {
358
+ "ap-northeast-1": {},
359
359
  "ap-northeast-2": {},
360
360
  "ap-south-1": {},
361
+ "ap-southeast-1": {},
361
362
  "ap-southeast-2": {},
362
363
  "eu-central-1": {},
363
- "us-west-2": {},
364
- "us-west-1": {},
364
+ "eu-west-1": {},
365
365
  "sa-east-1": {},
366
- "ap-northeast-1": {},
367
- "us-east-2": {},
368
366
  "us-east-1": {},
369
- "ap-southeast-1": {},
370
- "eu-west-1": {}
367
+ "us-east-2": {},
368
+ "us-west-1": {},
369
+ "us-west-2": {}
371
370
  }
372
371
  },
373
372
  "ds": {
374
373
  "endpoints": {
374
+ "ap-northeast-1": {},
375
+ "ap-southeast-1": {},
375
376
  "ap-southeast-2": {},
376
377
  "eu-central-1": {},
377
- "us-west-2": {},
378
- "ap-northeast-1": {},
378
+ "eu-west-1": {},
379
379
  "us-east-1": {},
380
- "ap-southeast-1": {},
381
- "eu-west-1": {}
380
+ "us-west-2": {}
382
381
  }
383
382
  },
384
383
  "dynamodb": {
384
+ "defaults": {
385
+ "protocols": [
386
+ "http",
387
+ "https"
388
+ ]
389
+ },
385
390
  "endpoints": {
391
+ "ap-northeast-1": {},
386
392
  "ap-northeast-2": {},
393
+ "ap-south-1": {},
394
+ "ap-southeast-1": {},
395
+ "ap-southeast-2": {},
396
+ "eu-central-1": {},
397
+ "eu-west-1": {},
387
398
  "local": {
399
+ "credentialScope": {
400
+ "region": "us-east-1"
401
+ },
388
402
  "hostname": "localhost:8000",
389
403
  "protocols": [
390
404
  "http"
391
- ],
392
- "credentialScope": {
393
- "region": "us-east-1"
394
- }
405
+ ]
395
406
  },
396
- "ap-south-1": {},
397
- "ap-southeast-2": {},
398
- "eu-central-1": {},
399
- "us-west-2": {},
400
- "us-west-1": {},
401
407
  "sa-east-1": {},
402
- "ap-northeast-1": {},
403
- "us-east-2": {},
404
408
  "us-east-1": {},
405
- "ap-southeast-1": {},
406
- "eu-west-1": {}
407
- },
409
+ "us-east-2": {},
410
+ "us-west-1": {},
411
+ "us-west-2": {}
412
+ }
413
+ },
414
+ "ec2": {
408
415
  "defaults": {
409
416
  "protocols": [
410
417
  "http",
411
418
  "https"
412
419
  ]
413
- }
414
- },
415
- "ec2": {
420
+ },
416
421
  "endpoints": {
422
+ "ap-northeast-1": {},
417
423
  "ap-northeast-2": {},
418
424
  "ap-south-1": {},
425
+ "ap-southeast-1": {},
419
426
  "ap-southeast-2": {},
420
427
  "eu-central-1": {},
421
- "us-west-2": {},
422
- "us-west-1": {},
428
+ "eu-west-1": {},
423
429
  "sa-east-1": {},
424
- "ap-northeast-1": {},
425
- "us-east-2": {},
426
430
  "us-east-1": {},
427
- "ap-southeast-1": {},
428
- "eu-west-1": {}
429
- },
430
- "defaults": {
431
- "protocols": [
432
- "http",
433
- "https"
434
- ]
431
+ "us-east-2": {},
432
+ "us-west-1": {},
433
+ "us-west-2": {}
435
434
  }
436
435
  },
437
436
  "ecr": {
438
437
  "endpoints": {
438
+ "ap-northeast-1": {},
439
+ "ap-southeast-1": {},
439
440
  "ap-southeast-2": {},
440
441
  "eu-central-1": {},
441
- "us-west-2": {},
442
- "us-west-1": {},
443
- "ap-northeast-1": {},
444
- "us-east-2": {},
442
+ "eu-west-1": {},
445
443
  "us-east-1": {},
446
- "ap-southeast-1": {},
447
- "eu-west-1": {}
444
+ "us-east-2": {},
445
+ "us-west-1": {},
446
+ "us-west-2": {}
448
447
  }
449
448
  },
450
449
  "ecs": {
451
450
  "endpoints": {
451
+ "ap-northeast-1": {},
452
+ "ap-southeast-1": {},
452
453
  "ap-southeast-2": {},
453
454
  "eu-central-1": {},
454
- "us-west-2": {},
455
- "us-west-1": {},
456
- "ap-northeast-1": {},
457
- "us-east-2": {},
455
+ "eu-west-1": {},
458
456
  "us-east-1": {},
459
- "ap-southeast-1": {},
460
- "eu-west-1": {}
457
+ "us-east-2": {},
458
+ "us-west-1": {},
459
+ "us-west-2": {}
461
460
  }
462
461
  },
463
462
  "elasticache": {
464
463
  "endpoints": {
464
+ "ap-northeast-1": {},
465
465
  "ap-northeast-2": {},
466
466
  "ap-south-1": {},
467
+ "ap-southeast-1": {},
467
468
  "ap-southeast-2": {},
468
469
  "eu-central-1": {},
469
- "us-west-2": {},
470
- "us-west-1": {},
470
+ "eu-west-1": {},
471
471
  "sa-east-1": {},
472
- "ap-northeast-1": {},
473
- "us-east-2": {},
474
472
  "us-east-1": {},
475
- "ap-southeast-1": {},
476
- "eu-west-1": {}
473
+ "us-east-2": {},
474
+ "us-west-1": {},
475
+ "us-west-2": {}
477
476
  }
478
477
  },
479
478
  "elasticbeanstalk": {
480
479
  "endpoints": {
480
+ "ap-northeast-1": {},
481
481
  "ap-northeast-2": {},
482
482
  "ap-south-1": {},
483
+ "ap-southeast-1": {},
483
484
  "ap-southeast-2": {},
484
485
  "eu-central-1": {},
485
- "us-west-2": {},
486
- "us-west-1": {},
486
+ "eu-west-1": {},
487
487
  "sa-east-1": {},
488
- "ap-northeast-1": {},
489
- "us-east-2": {},
490
488
  "us-east-1": {},
491
- "ap-southeast-1": {},
492
- "eu-west-1": {}
489
+ "us-east-2": {},
490
+ "us-west-1": {},
491
+ "us-west-2": {}
493
492
  }
494
493
  },
495
494
  "elasticfilesystem": {
496
495
  "endpoints": {
497
- "us-west-2": {},
498
- "us-east-2": {},
496
+ "eu-west-1": {},
499
497
  "us-east-1": {},
500
- "eu-west-1": {}
498
+ "us-east-2": {},
499
+ "us-west-2": {}
501
500
  }
502
501
  },
503
502
  "elasticloadbalancing": {
503
+ "defaults": {
504
+ "protocols": [
505
+ "http",
506
+ "https"
507
+ ]
508
+ },
504
509
  "endpoints": {
510
+ "ap-northeast-1": {},
505
511
  "ap-northeast-2": {},
506
512
  "ap-south-1": {},
513
+ "ap-southeast-1": {},
507
514
  "ap-southeast-2": {},
508
515
  "eu-central-1": {},
509
- "us-west-2": {},
510
- "us-west-1": {},
516
+ "eu-west-1": {},
511
517
  "sa-east-1": {},
512
- "ap-northeast-1": {},
513
- "us-east-2": {},
514
518
  "us-east-1": {},
515
- "ap-southeast-1": {},
516
- "eu-west-1": {}
517
- },
519
+ "us-east-2": {},
520
+ "us-west-1": {},
521
+ "us-west-2": {}
522
+ }
523
+ },
524
+ "elasticmapreduce": {
518
525
  "defaults": {
519
526
  "protocols": [
520
527
  "http",
521
528
  "https"
522
- ]
523
- }
524
- },
525
- "elasticmapreduce": {
529
+ ],
530
+ "sslCommonName": "{region}.{service}.{dnsSuffix}"
531
+ },
526
532
  "endpoints": {
533
+ "ap-northeast-1": {},
527
534
  "ap-northeast-2": {},
528
535
  "ap-south-1": {},
536
+ "ap-southeast-1": {},
529
537
  "ap-southeast-2": {},
530
538
  "eu-central-1": {
531
539
  "sslCommonName": "{service}.{region}.{dnsSuffix}"
532
540
  },
533
- "us-west-2": {},
534
- "us-west-1": {},
541
+ "eu-west-1": {},
535
542
  "sa-east-1": {},
536
- "ap-northeast-1": {},
537
- "us-east-2": {},
538
543
  "us-east-1": {
539
544
  "sslCommonName": "{service}.{region}.{dnsSuffix}"
540
545
  },
541
- "ap-southeast-1": {},
542
- "eu-west-1": {}
543
- },
544
- "defaults": {
545
- "protocols": [
546
- "http",
547
- "https"
548
- ],
549
- "sslCommonName": "{region}.{service}.{dnsSuffix}"
546
+ "us-east-2": {},
547
+ "us-west-1": {},
548
+ "us-west-2": {}
550
549
  }
551
550
  },
552
551
  "elastictranscoder": {
553
552
  "endpoints": {
553
+ "ap-northeast-1": {},
554
554
  "ap-south-1": {},
555
+ "ap-southeast-1": {},
555
556
  "ap-southeast-2": {},
556
- "us-west-2": {},
557
- "us-west-1": {},
558
- "ap-northeast-1": {},
557
+ "eu-west-1": {},
559
558
  "us-east-1": {},
560
- "ap-southeast-1": {},
561
- "eu-west-1": {}
559
+ "us-west-1": {},
560
+ "us-west-2": {}
562
561
  }
563
562
  },
564
563
  "email": {
565
564
  "endpoints": {
566
- "us-west-2": {},
565
+ "eu-west-1": {},
567
566
  "us-east-1": {},
568
- "eu-west-1": {}
567
+ "us-west-2": {}
569
568
  }
570
569
  },
571
570
  "es": {
572
571
  "endpoints": {
572
+ "ap-northeast-1": {},
573
573
  "ap-northeast-2": {},
574
574
  "ap-south-1": {},
575
+ "ap-southeast-1": {},
575
576
  "ap-southeast-2": {},
576
577
  "eu-central-1": {},
577
- "us-west-2": {},
578
- "us-west-1": {},
578
+ "eu-west-1": {},
579
579
  "sa-east-1": {},
580
- "ap-northeast-1": {},
581
- "us-east-2": {},
582
580
  "us-east-1": {},
583
- "ap-southeast-1": {},
584
- "eu-west-1": {}
581
+ "us-east-2": {},
582
+ "us-west-1": {},
583
+ "us-west-2": {}
585
584
  }
586
585
  },
587
586
  "events": {
588
587
  "endpoints": {
588
+ "ap-northeast-1": {},
589
589
  "ap-northeast-2": {},
590
590
  "ap-south-1": {},
591
+ "ap-southeast-1": {},
591
592
  "ap-southeast-2": {},
592
593
  "eu-central-1": {},
593
- "us-west-2": {},
594
- "us-west-1": {},
594
+ "eu-west-1": {},
595
595
  "sa-east-1": {},
596
- "ap-northeast-1": {},
597
- "us-east-2": {},
598
596
  "us-east-1": {},
599
- "ap-southeast-1": {},
600
- "eu-west-1": {}
597
+ "us-east-2": {},
598
+ "us-west-1": {},
599
+ "us-west-2": {}
601
600
  }
602
601
  },
603
602
  "firehose": {
604
603
  "endpoints": {
605
- "us-west-2": {},
604
+ "eu-west-1": {},
606
605
  "us-east-1": {},
607
- "eu-west-1": {}
606
+ "us-west-2": {}
608
607
  }
609
608
  },
610
609
  "gamelift": {
611
610
  "endpoints": {
612
- "us-west-2": {},
613
611
  "ap-northeast-1": {},
612
+ "eu-west-1": {},
614
613
  "us-east-1": {},
615
- "eu-west-1": {}
614
+ "us-west-2": {}
616
615
  }
617
616
  },
618
617
  "glacier": {
618
+ "defaults": {
619
+ "protocols": [
620
+ "http",
621
+ "https"
622
+ ]
623
+ },
619
624
  "endpoints": {
625
+ "ap-northeast-1": {},
620
626
  "ap-northeast-2": {},
621
627
  "ap-south-1": {},
622
628
  "ap-southeast-2": {},
623
629
  "eu-central-1": {},
624
- "us-west-2": {},
625
- "us-west-1": {},
626
- "ap-northeast-1": {},
627
- "us-east-2": {},
630
+ "eu-west-1": {},
628
631
  "us-east-1": {},
629
- "eu-west-1": {}
630
- },
631
- "defaults": {
632
- "protocols": [
633
- "http",
634
- "https"
635
- ]
632
+ "us-east-2": {},
633
+ "us-west-1": {},
634
+ "us-west-2": {}
636
635
  }
637
636
  },
638
637
  "iam": {
639
638
  "endpoints": {
640
639
  "aws-global": {
641
- "hostname": "iam.amazonaws.com",
642
640
  "credentialScope": {
643
641
  "region": "us-east-1"
644
- }
642
+ },
643
+ "hostname": "iam.amazonaws.com"
645
644
  }
646
645
  },
647
646
  "isRegionalized": false,
@@ -650,15 +649,15 @@
650
649
  "importexport": {
651
650
  "endpoints": {
652
651
  "aws-global": {
652
+ "credentialScope": {
653
+ "region": "us-east-1",
654
+ "service": "IngestionService"
655
+ },
653
656
  "hostname": "importexport.amazonaws.com",
654
657
  "signatureVersions": [
655
658
  "v2",
656
659
  "v4"
657
- ],
658
- "credentialScope": {
659
- "service": "IngestionService",
660
- "region": "us-east-1"
661
- }
660
+ ]
662
661
  }
663
662
  },
664
663
  "isRegionalized": false,
@@ -666,104 +665,104 @@
666
665
  },
667
666
  "inspector": {
668
667
  "endpoints": {
668
+ "ap-northeast-1": {},
669
669
  "ap-northeast-2": {},
670
670
  "ap-south-1": {},
671
671
  "ap-southeast-2": {},
672
- "us-west-2": {},
673
- "ap-northeast-1": {},
672
+ "eu-west-1": {},
674
673
  "us-east-1": {},
675
- "eu-west-1": {}
674
+ "us-west-2": {}
676
675
  }
677
676
  },
678
677
  "iot": {
678
+ "defaults": {
679
+ "credentialScope": {
680
+ "service": "execute-api"
681
+ }
682
+ },
679
683
  "endpoints": {
684
+ "ap-northeast-1": {},
680
685
  "ap-northeast-2": {},
686
+ "ap-southeast-1": {},
681
687
  "ap-southeast-2": {},
682
688
  "eu-central-1": {},
683
- "us-west-2": {},
684
- "ap-northeast-1": {},
689
+ "eu-west-1": {},
685
690
  "us-east-1": {},
686
- "ap-southeast-1": {},
687
- "eu-west-1": {}
688
- },
689
- "defaults": {
690
- "credentialScope": {
691
- "service": "execute-api"
692
- }
691
+ "us-west-2": {}
693
692
  }
694
693
  },
695
694
  "kinesis": {
696
695
  "endpoints": {
696
+ "ap-northeast-1": {},
697
697
  "ap-northeast-2": {},
698
698
  "ap-south-1": {},
699
+ "ap-southeast-1": {},
699
700
  "ap-southeast-2": {},
700
701
  "eu-central-1": {},
701
- "us-west-2": {},
702
- "us-west-1": {},
702
+ "eu-west-1": {},
703
703
  "sa-east-1": {},
704
- "ap-northeast-1": {},
705
- "us-east-2": {},
706
704
  "us-east-1": {},
707
- "ap-southeast-1": {},
708
- "eu-west-1": {}
705
+ "us-east-2": {},
706
+ "us-west-1": {},
707
+ "us-west-2": {}
709
708
  }
710
709
  },
711
710
  "kinesisanalytics": {
712
711
  "endpoints": {
713
- "us-west-2": {},
712
+ "eu-west-1": {},
714
713
  "us-east-1": {},
715
- "eu-west-1": {}
714
+ "us-west-2": {}
716
715
  }
717
716
  },
718
717
  "kms": {
719
718
  "endpoints": {
719
+ "ap-northeast-1": {},
720
720
  "ap-northeast-2": {},
721
721
  "ap-south-1": {},
722
+ "ap-southeast-1": {},
722
723
  "ap-southeast-2": {},
723
724
  "eu-central-1": {},
724
- "us-west-2": {},
725
- "us-west-1": {},
725
+ "eu-west-1": {},
726
726
  "sa-east-1": {},
727
- "ap-northeast-1": {},
728
- "us-east-2": {},
729
727
  "us-east-1": {},
730
- "ap-southeast-1": {},
731
- "eu-west-1": {}
728
+ "us-east-2": {},
729
+ "us-west-1": {},
730
+ "us-west-2": {}
732
731
  }
733
732
  },
734
733
  "lambda": {
735
734
  "endpoints": {
735
+ "ap-northeast-1": {},
736
736
  "ap-northeast-2": {},
737
+ "ap-southeast-1": {},
737
738
  "ap-southeast-2": {},
738
739
  "eu-central-1": {},
739
- "us-west-2": {},
740
- "ap-northeast-1": {},
741
- "us-east-2": {},
740
+ "eu-west-1": {},
742
741
  "us-east-1": {},
743
- "ap-southeast-1": {},
744
- "eu-west-1": {}
742
+ "us-east-2": {},
743
+ "us-west-2": {}
745
744
  }
746
745
  },
747
746
  "logs": {
748
747
  "endpoints": {
748
+ "ap-northeast-1": {},
749
749
  "ap-northeast-2": {},
750
750
  "ap-south-1": {},
751
+ "ap-southeast-1": {},
751
752
  "ap-southeast-2": {},
752
753
  "eu-central-1": {},
753
- "us-west-2": {},
754
- "us-west-1": {},
754
+ "eu-west-1": {},
755
755
  "sa-east-1": {},
756
- "ap-northeast-1": {},
757
- "us-east-2": {},
758
756
  "us-east-1": {},
759
- "ap-southeast-1": {},
760
- "eu-west-1": {}
757
+ "us-east-2": {},
758
+ "us-west-1": {},
759
+ "us-west-2": {}
761
760
  }
762
761
  },
763
762
  "machinelearning": {
764
763
  "endpoints": {
765
- "us-east-1": {},
766
- "eu-west-1": {}
764
+ "eu-west-1": {},
765
+ "us-east-1": {}
767
766
  }
768
767
  },
769
768
  "marketplacecommerceanalytics": {
@@ -773,8 +772,8 @@
773
772
  },
774
773
  "metering.marketplace": {
775
774
  "endpoints": {
776
- "us-west-2": {},
777
- "us-east-1": {}
775
+ "us-east-1": {},
776
+ "us-west-2": {}
778
777
  }
779
778
  },
780
779
  "mobileanalytics": {
@@ -783,88 +782,88 @@
783
782
  }
784
783
  },
785
784
  "monitoring": {
785
+ "defaults": {
786
+ "protocols": [
787
+ "http",
788
+ "https"
789
+ ]
790
+ },
786
791
  "endpoints": {
792
+ "ap-northeast-1": {},
787
793
  "ap-northeast-2": {},
788
794
  "ap-south-1": {},
795
+ "ap-southeast-1": {},
789
796
  "ap-southeast-2": {},
790
797
  "eu-central-1": {},
791
- "us-west-2": {},
792
- "us-west-1": {},
798
+ "eu-west-1": {},
793
799
  "sa-east-1": {},
794
- "ap-northeast-1": {},
795
- "us-east-2": {},
796
800
  "us-east-1": {},
797
- "ap-southeast-1": {},
798
- "eu-west-1": {}
799
- },
800
- "defaults": {
801
- "protocols": [
802
- "http",
803
- "https"
804
- ]
801
+ "us-east-2": {},
802
+ "us-west-1": {},
803
+ "us-west-2": {}
805
804
  }
806
805
  },
807
806
  "opsworks": {
808
807
  "endpoints": {
808
+ "ap-northeast-1": {},
809
809
  "ap-northeast-2": {},
810
810
  "ap-south-1": {},
811
+ "ap-southeast-1": {},
811
812
  "ap-southeast-2": {},
812
813
  "eu-central-1": {},
813
- "us-west-2": {},
814
- "us-west-1": {},
814
+ "eu-west-1": {},
815
815
  "sa-east-1": {},
816
- "ap-northeast-1": {},
817
- "us-east-2": {},
818
816
  "us-east-1": {},
819
- "ap-southeast-1": {},
820
- "eu-west-1": {}
817
+ "us-east-2": {},
818
+ "us-west-1": {},
819
+ "us-west-2": {}
821
820
  }
822
821
  },
823
822
  "rds": {
824
823
  "endpoints": {
824
+ "ap-northeast-1": {},
825
825
  "ap-northeast-2": {},
826
826
  "ap-south-1": {},
827
+ "ap-southeast-1": {},
827
828
  "ap-southeast-2": {},
828
829
  "eu-central-1": {},
829
- "us-west-2": {},
830
- "us-west-1": {},
830
+ "eu-west-1": {},
831
831
  "sa-east-1": {},
832
- "ap-northeast-1": {},
833
- "us-east-2": {},
834
832
  "us-east-1": {
835
833
  "sslCommonName": "{service}.{dnsSuffix}"
836
834
  },
837
- "ap-southeast-1": {},
838
- "eu-west-1": {}
835
+ "us-east-2": {},
836
+ "us-west-1": {},
837
+ "us-west-2": {}
839
838
  }
840
839
  },
841
840
  "redshift": {
842
841
  "endpoints": {
842
+ "ap-northeast-1": {},
843
843
  "ap-northeast-2": {},
844
844
  "ap-south-1": {},
845
+ "ap-southeast-1": {},
845
846
  "ap-southeast-2": {},
846
847
  "eu-central-1": {},
847
- "us-west-2": {},
848
- "us-west-1": {},
848
+ "eu-west-1": {},
849
849
  "sa-east-1": {},
850
- "ap-northeast-1": {},
851
- "us-east-2": {},
852
850
  "us-east-1": {},
853
- "ap-southeast-1": {},
854
- "eu-west-1": {}
851
+ "us-east-2": {},
852
+ "us-west-1": {},
853
+ "us-west-2": {}
855
854
  }
856
855
  },
857
856
  "route53": {
858
857
  "endpoints": {
859
858
  "aws-global": {
860
- "hostname": "route53.amazonaws.com",
861
859
  "credentialScope": {
862
860
  "region": "us-east-1"
863
- }
861
+ },
862
+ "hostname": "route53.amazonaws.com"
864
863
  }
865
864
  },
866
- "partitionEndpoint": "aws-global",
867
- "isRegionalized": false
865
+ "isRegionalized": false,
866
+ "partitionEndpoint": "aws-global"
868
867
  },
869
868
  "route53domains": {
870
869
  "endpoints": {
@@ -872,130 +871,130 @@
872
871
  }
873
872
  },
874
873
  "s3": {
874
+ "defaults": {
875
+ "protocols": [
876
+ "http",
877
+ "https"
878
+ ],
879
+ "signatureVersions": [
880
+ "s3v4"
881
+ ]
882
+ },
875
883
  "endpoints": {
876
- "ap-northeast-2": {},
877
- "ap-south-1": {},
878
- "ap-southeast-2": {
879
- "hostname": "s3-ap-southeast-2.amazonaws.com",
884
+ "ap-northeast-1": {
885
+ "hostname": "s3-ap-northeast-1.amazonaws.com",
880
886
  "signatureVersions": [
881
887
  "s3",
882
888
  "s3v4"
883
889
  ]
884
890
  },
885
- "eu-central-1": {},
886
- "us-west-2": {
887
- "hostname": "s3-us-west-2.amazonaws.com",
891
+ "ap-northeast-2": {},
892
+ "ap-south-1": {},
893
+ "ap-southeast-1": {
894
+ "hostname": "s3-ap-southeast-1.amazonaws.com",
888
895
  "signatureVersions": [
889
896
  "s3",
890
897
  "s3v4"
891
898
  ]
892
899
  },
893
- "us-west-1": {
894
- "hostname": "s3-us-west-1.amazonaws.com",
900
+ "ap-southeast-2": {
901
+ "hostname": "s3-ap-southeast-2.amazonaws.com",
895
902
  "signatureVersions": [
896
903
  "s3",
897
904
  "s3v4"
898
905
  ]
899
906
  },
900
- "sa-east-1": {
901
- "hostname": "s3-sa-east-1.amazonaws.com",
907
+ "eu-central-1": {},
908
+ "eu-west-1": {
909
+ "hostname": "s3-eu-west-1.amazonaws.com",
902
910
  "signatureVersions": [
903
911
  "s3",
904
912
  "s3v4"
905
913
  ]
906
914
  },
907
- "ap-northeast-1": {
908
- "hostname": "s3-ap-northeast-1.amazonaws.com",
915
+ "s3-external-1": {
916
+ "credentialScope": {
917
+ "region": "us-east-1"
918
+ },
919
+ "hostname": "s3-external-1.amazonaws.com",
909
920
  "signatureVersions": [
910
921
  "s3",
911
922
  "s3v4"
912
923
  ]
913
924
  },
914
- "us-east-2": {},
915
- "us-east-1": {
916
- "hostname": "s3.amazonaws.com",
925
+ "sa-east-1": {
926
+ "hostname": "s3-sa-east-1.amazonaws.com",
917
927
  "signatureVersions": [
918
928
  "s3",
919
929
  "s3v4"
920
930
  ]
921
931
  },
922
- "s3-external-1": {
923
- "hostname": "s3-external-1.amazonaws.com",
924
- "credentialScope": {
925
- "region": "us-east-1"
926
- },
932
+ "us-east-1": {
933
+ "hostname": "s3.amazonaws.com",
927
934
  "signatureVersions": [
928
935
  "s3",
929
936
  "s3v4"
930
937
  ]
931
938
  },
932
- "ap-southeast-1": {
933
- "hostname": "s3-ap-southeast-1.amazonaws.com",
939
+ "us-east-2": {},
940
+ "us-west-1": {
941
+ "hostname": "s3-us-west-1.amazonaws.com",
934
942
  "signatureVersions": [
935
943
  "s3",
936
944
  "s3v4"
937
945
  ]
938
946
  },
939
- "eu-west-1": {
940
- "hostname": "s3-eu-west-1.amazonaws.com",
947
+ "us-west-2": {
948
+ "hostname": "s3-us-west-2.amazonaws.com",
941
949
  "signatureVersions": [
942
950
  "s3",
943
951
  "s3v4"
944
952
  ]
945
953
  }
946
954
  },
947
- "partitionEndpoint": "us-east-1",
948
955
  "isRegionalized": true,
956
+ "partitionEndpoint": "us-east-1"
957
+ },
958
+ "sdb": {
949
959
  "defaults": {
950
960
  "protocols": [
951
961
  "http",
952
962
  "https"
953
963
  ],
954
964
  "signatureVersions": [
955
- "s3v4"
965
+ "v2"
956
966
  ]
957
- }
958
- },
959
- "sdb": {
967
+ },
960
968
  "endpoints": {
969
+ "ap-northeast-1": {},
970
+ "ap-southeast-1": {},
961
971
  "ap-southeast-2": {},
962
- "us-west-2": {},
963
- "us-west-1": {},
972
+ "eu-west-1": {},
964
973
  "sa-east-1": {},
965
- "ap-northeast-1": {},
966
974
  "us-east-1": {
967
975
  "hostname": "sdb.amazonaws.com"
968
976
  },
969
- "ap-southeast-1": {},
970
- "eu-west-1": {}
971
- },
972
- "defaults": {
973
- "protocols": [
974
- "http",
975
- "https"
976
- ],
977
- "signatureVersions": [
978
- "v2"
979
- ]
977
+ "us-west-1": {},
978
+ "us-west-2": {}
980
979
  }
981
980
  },
982
981
  "servicecatalog": {
983
982
  "endpoints": {
983
+ "ap-northeast-1": {},
984
+ "ap-southeast-1": {},
984
985
  "ap-southeast-2": {},
985
986
  "eu-central-1": {},
986
- "us-west-2": {},
987
- "ap-northeast-1": {},
988
- "us-east-2": {},
987
+ "eu-west-1": {},
989
988
  "us-east-1": {},
990
- "ap-southeast-1": {},
991
- "eu-west-1": {}
989
+ "us-east-2": {},
990
+ "us-west-2": {}
992
991
  }
993
992
  },
994
993
  "sms": {
995
994
  "endpoints": {
996
995
  "ap-southeast-2": {},
997
- "us-east-1": {},
998
- "eu-west-1": {}
996
+ "eu-west-1": {},
997
+ "us-east-1": {}
999
998
  }
1000
999
  },
1001
1000
  "snowball": {
@@ -1003,140 +1002,140 @@
1003
1002
  "ap-south-1": {},
1004
1003
  "ap-southeast-2": {},
1005
1004
  "eu-central-1": {},
1006
- "us-west-2": {},
1007
- "us-west-1": {},
1008
- "us-east-2": {},
1005
+ "eu-west-1": {},
1009
1006
  "us-east-1": {},
1010
- "eu-west-1": {}
1007
+ "us-east-2": {},
1008
+ "us-west-1": {},
1009
+ "us-west-2": {}
1011
1010
  }
1012
1011
  },
1013
1012
  "sns": {
1013
+ "defaults": {
1014
+ "protocols": [
1015
+ "http",
1016
+ "https"
1017
+ ]
1018
+ },
1014
1019
  "endpoints": {
1020
+ "ap-northeast-1": {},
1015
1021
  "ap-northeast-2": {},
1016
1022
  "ap-south-1": {},
1023
+ "ap-southeast-1": {},
1017
1024
  "ap-southeast-2": {},
1018
1025
  "eu-central-1": {},
1019
- "us-west-2": {},
1020
- "us-west-1": {},
1026
+ "eu-west-1": {},
1021
1027
  "sa-east-1": {},
1022
- "ap-northeast-1": {},
1023
- "us-east-2": {},
1024
1028
  "us-east-1": {},
1025
- "ap-southeast-1": {},
1026
- "eu-west-1": {}
1027
- },
1029
+ "us-east-2": {},
1030
+ "us-west-1": {},
1031
+ "us-west-2": {}
1032
+ }
1033
+ },
1034
+ "sqs": {
1028
1035
  "defaults": {
1029
1036
  "protocols": [
1030
1037
  "http",
1031
1038
  "https"
1032
- ]
1033
- }
1034
- },
1035
- "sqs": {
1039
+ ],
1040
+ "sslCommonName": "{region}.queue.{dnsSuffix}"
1041
+ },
1036
1042
  "endpoints": {
1043
+ "ap-northeast-1": {},
1037
1044
  "ap-northeast-2": {},
1038
1045
  "ap-south-1": {},
1046
+ "ap-southeast-1": {},
1039
1047
  "ap-southeast-2": {},
1040
1048
  "eu-central-1": {},
1041
- "us-west-2": {},
1042
- "us-west-1": {},
1049
+ "eu-west-1": {},
1043
1050
  "sa-east-1": {},
1044
- "ap-northeast-1": {},
1045
- "us-east-2": {},
1046
1051
  "us-east-1": {
1047
1052
  "sslCommonName": "queue.{dnsSuffix}"
1048
1053
  },
1049
- "ap-southeast-1": {},
1050
- "eu-west-1": {}
1051
- },
1052
- "defaults": {
1053
- "protocols": [
1054
- "http",
1055
- "https"
1056
- ],
1057
- "sslCommonName": "{region}.queue.{dnsSuffix}"
1054
+ "us-east-2": {},
1055
+ "us-west-1": {},
1056
+ "us-west-2": {}
1058
1057
  }
1059
1058
  },
1060
1059
  "ssm": {
1061
1060
  "endpoints": {
1061
+ "ap-northeast-1": {},
1062
1062
  "ap-northeast-2": {},
1063
+ "ap-southeast-1": {},
1063
1064
  "ap-southeast-2": {},
1064
1065
  "eu-central-1": {},
1065
- "us-west-2": {},
1066
- "us-west-1": {},
1066
+ "eu-west-1": {},
1067
1067
  "sa-east-1": {},
1068
- "ap-northeast-1": {},
1069
1068
  "us-east-1": {},
1070
- "ap-southeast-1": {},
1071
- "eu-west-1": {}
1069
+ "us-west-1": {},
1070
+ "us-west-2": {}
1072
1071
  }
1073
1072
  },
1074
1073
  "storagegateway": {
1075
1074
  "endpoints": {
1075
+ "ap-northeast-1": {},
1076
1076
  "ap-northeast-2": {},
1077
+ "ap-southeast-1": {},
1077
1078
  "ap-southeast-2": {},
1078
1079
  "eu-central-1": {},
1079
- "us-west-2": {},
1080
- "us-west-1": {},
1080
+ "eu-west-1": {},
1081
1081
  "sa-east-1": {},
1082
- "ap-northeast-1": {},
1083
- "us-east-2": {},
1084
1082
  "us-east-1": {},
1085
- "ap-southeast-1": {},
1086
- "eu-west-1": {}
1083
+ "us-east-2": {},
1084
+ "us-west-1": {},
1085
+ "us-west-2": {}
1087
1086
  }
1088
1087
  },
1089
1088
  "streams.dynamodb": {
1089
+ "defaults": {
1090
+ "credentialScope": {
1091
+ "service": "dynamodb"
1092
+ },
1093
+ "protocols": [
1094
+ "http",
1095
+ "https"
1096
+ ]
1097
+ },
1090
1098
  "endpoints": {
1099
+ "ap-northeast-1": {},
1091
1100
  "ap-northeast-2": {},
1092
1101
  "ap-south-1": {},
1102
+ "ap-southeast-1": {},
1093
1103
  "ap-southeast-2": {},
1094
1104
  "eu-central-1": {},
1095
- "us-west-2": {},
1096
- "us-west-1": {},
1105
+ "eu-west-1": {},
1097
1106
  "sa-east-1": {},
1098
- "ap-northeast-1": {},
1099
- "us-east-2": {},
1100
1107
  "us-east-1": {},
1101
- "ap-southeast-1": {},
1102
- "eu-west-1": {}
1103
- },
1104
- "defaults": {
1105
- "protocols": [
1106
- "http",
1107
- "https"
1108
- ],
1109
- "credentialScope": {
1110
- "service": "dynamodb"
1111
- }
1108
+ "us-east-2": {},
1109
+ "us-west-1": {},
1110
+ "us-west-2": {}
1112
1111
  }
1113
1112
  },
1114
1113
  "sts": {
1114
+ "defaults": {
1115
+ "credentialScope": {
1116
+ "region": "us-east-1"
1117
+ },
1118
+ "hostname": "sts.amazonaws.com"
1119
+ },
1115
1120
  "endpoints": {
1121
+ "ap-northeast-1": {},
1116
1122
  "ap-northeast-2": {
1117
- "hostname": "sts.ap-northeast-2.amazonaws.com",
1118
1123
  "credentialScope": {
1119
1124
  "region": "ap-northeast-2"
1120
- }
1125
+ },
1126
+ "hostname": "sts.ap-northeast-2.amazonaws.com"
1121
1127
  },
1122
1128
  "ap-south-1": {},
1123
- "aws-global": {},
1129
+ "ap-southeast-1": {},
1124
1130
  "ap-southeast-2": {},
1131
+ "aws-global": {},
1125
1132
  "eu-central-1": {},
1126
- "us-west-2": {},
1127
- "us-west-1": {},
1133
+ "eu-west-1": {},
1128
1134
  "sa-east-1": {},
1129
- "ap-northeast-1": {},
1130
- "us-east-2": {},
1131
1135
  "us-east-1": {},
1132
- "ap-southeast-1": {},
1133
- "eu-west-1": {}
1134
- },
1135
- "defaults": {
1136
- "credentialScope": {
1137
- "region": "us-east-1"
1138
- },
1139
- "hostname": "sts.amazonaws.com"
1136
+ "us-east-2": {},
1137
+ "us-west-1": {},
1138
+ "us-west-2": {}
1140
1139
  },
1141
1140
  "partitionEndpoint": "aws-global"
1142
1141
  },
@@ -1147,50 +1146,46 @@
1147
1146
  },
1148
1147
  "swf": {
1149
1148
  "endpoints": {
1149
+ "ap-northeast-1": {},
1150
1150
  "ap-northeast-2": {},
1151
1151
  "ap-south-1": {},
1152
+ "ap-southeast-1": {},
1152
1153
  "ap-southeast-2": {},
1153
1154
  "eu-central-1": {},
1154
- "us-west-2": {},
1155
- "us-west-1": {},
1155
+ "eu-west-1": {},
1156
1156
  "sa-east-1": {},
1157
- "ap-northeast-1": {},
1158
- "us-east-2": {},
1159
1157
  "us-east-1": {},
1160
- "ap-southeast-1": {},
1161
- "eu-west-1": {}
1158
+ "us-east-2": {},
1159
+ "us-west-1": {},
1160
+ "us-west-2": {}
1162
1161
  }
1163
1162
  },
1164
1163
  "waf": {
1165
1164
  "endpoints": {
1166
1165
  "aws-global": {
1167
- "hostname": "waf.amazonaws.com",
1168
1166
  "credentialScope": {
1169
1167
  "region": "us-east-1"
1170
- }
1168
+ },
1169
+ "hostname": "waf.amazonaws.com"
1171
1170
  }
1172
1171
  },
1173
- "partitionEndpoint": "aws-global",
1174
- "isRegionalized": false
1172
+ "isRegionalized": false,
1173
+ "partitionEndpoint": "aws-global"
1175
1174
  },
1176
1175
  "workspaces": {
1177
1176
  "endpoints": {
1177
+ "ap-northeast-1": {},
1178
+ "ap-southeast-1": {},
1178
1179
  "ap-southeast-2": {},
1179
1180
  "eu-central-1": {},
1180
- "us-west-2": {},
1181
- "ap-northeast-1": {},
1181
+ "eu-west-1": {},
1182
1182
  "us-east-1": {},
1183
- "ap-southeast-1": {},
1184
- "eu-west-1": {}
1183
+ "us-west-2": {}
1185
1184
  }
1186
1185
  }
1187
1186
  }
1188
1187
  },
1189
1188
  {
1190
- "partition": "aws-cn",
1191
- "partitionName": "AWS China",
1192
- "regionRegex": "^cn\\-\\w+\\-\\d+$",
1193
- "dnsSuffix": "amazonaws.com.cn",
1194
1189
  "defaults": {
1195
1190
  "hostname": "{service}.{region}.{dnsSuffix}",
1196
1191
  "protocols": [
@@ -1200,219 +1195,205 @@
1200
1195
  "v4"
1201
1196
  ]
1202
1197
  },
1198
+ "dnsSuffix": "amazonaws.com",
1199
+ "partition": "aws-us-gov",
1200
+ "partitionName": "AWS GovCloud (US)",
1201
+ "regionRegex": "^us\\-gov\\-\\w+\\-\\d+$",
1203
1202
  "regions": {
1204
- "cn-north-1": {
1205
- "description": "China (Beijing)"
1203
+ "us-gov-west-1": {
1204
+ "description": "AWS GovCloud (US)"
1206
1205
  }
1207
1206
  },
1208
1207
  "services": {
1209
1208
  "autoscaling": {
1210
1209
  "endpoints": {
1211
- "cn-north-1": {}
1212
- },
1213
- "defaults": {
1214
- "protocols": [
1215
- "http",
1216
- "https"
1217
- ]
1210
+ "us-gov-west-1": {
1211
+ "protocols": [
1212
+ "http",
1213
+ "https"
1214
+ ]
1215
+ }
1218
1216
  }
1219
1217
  },
1220
1218
  "cloudformation": {
1221
1219
  "endpoints": {
1222
- "cn-north-1": {}
1220
+ "us-gov-west-1": {}
1223
1221
  }
1224
1222
  },
1225
- "cloudtrail": {
1223
+ "cloudhsm": {
1226
1224
  "endpoints": {
1227
- "cn-north-1": {}
1225
+ "us-gov-west-1": {}
1226
+ }
1227
+ },
1228
+ "cloudtrail": {
1229
+ "endpoints": {
1230
+ "us-gov-west-1": {}
1231
+ }
1232
+ },
1233
+ "config": {
1234
+ "endpoints": {
1235
+ "us-gov-west-1": {}
1228
1236
  }
1229
1237
  },
1230
1238
  "directconnect": {
1231
1239
  "endpoints": {
1232
- "cn-north-1": {}
1240
+ "us-gov-west-1": {}
1233
1241
  }
1234
1242
  },
1235
1243
  "dynamodb": {
1236
1244
  "endpoints": {
1237
- "cn-north-1": {}
1238
- },
1239
- "defaults": {
1240
- "protocols": [
1241
- "http",
1242
- "https"
1243
- ]
1245
+ "us-gov-west-1": {}
1244
1246
  }
1245
1247
  },
1246
1248
  "ec2": {
1247
1249
  "endpoints": {
1248
- "cn-north-1": {}
1249
- },
1250
- "defaults": {
1251
- "protocols": [
1252
- "http",
1253
- "https"
1254
- ]
1250
+ "us-gov-west-1": {}
1255
1251
  }
1256
1252
  },
1257
1253
  "elasticache": {
1258
1254
  "endpoints": {
1259
- "cn-north-1": {}
1260
- }
1261
- },
1262
- "elasticbeanstalk": {
1263
- "endpoints": {
1264
- "cn-north-1": {}
1255
+ "us-gov-west-1": {}
1265
1256
  }
1266
1257
  },
1267
1258
  "elasticloadbalancing": {
1268
1259
  "endpoints": {
1269
- "cn-north-1": {}
1270
- },
1271
- "defaults": {
1272
- "protocols": [
1273
- "http",
1274
- "https"
1275
- ]
1260
+ "us-gov-west-1": {
1261
+ "protocols": [
1262
+ "http",
1263
+ "https"
1264
+ ]
1265
+ }
1276
1266
  }
1277
1267
  },
1278
1268
  "elasticmapreduce": {
1279
1269
  "endpoints": {
1280
- "cn-north-1": {}
1281
- },
1282
- "defaults": {
1283
- "protocols": [
1284
- "http",
1285
- "https"
1286
- ]
1270
+ "us-gov-west-1": {
1271
+ "protocols": [
1272
+ "http",
1273
+ "https"
1274
+ ]
1275
+ }
1287
1276
  }
1288
1277
  },
1289
1278
  "glacier": {
1290
1279
  "endpoints": {
1291
- "cn-north-1": {}
1292
- },
1293
- "defaults": {
1294
- "protocols": [
1295
- "http",
1296
- "https"
1297
- ]
1280
+ "us-gov-west-1": {
1281
+ "protocols": [
1282
+ "http",
1283
+ "https"
1284
+ ]
1285
+ }
1298
1286
  }
1299
1287
  },
1300
1288
  "iam": {
1301
1289
  "endpoints": {
1302
- "aws-cn-global": {
1303
- "hostname": "iam.cn-north-1.amazonaws.com.cn",
1290
+ "aws-us-gov-global": {
1304
1291
  "credentialScope": {
1305
- "region": "cn-north-1"
1306
- }
1292
+ "region": "us-gov-west-1"
1293
+ },
1294
+ "hostname": "iam.us-gov.amazonaws.com"
1307
1295
  }
1308
1296
  },
1309
1297
  "isRegionalized": false,
1310
- "partitionEndpoint": "aws-cn-global"
1298
+ "partitionEndpoint": "aws-us-gov-global"
1311
1299
  },
1312
- "kinesis": {
1300
+ "kms": {
1313
1301
  "endpoints": {
1314
- "cn-north-1": {}
1302
+ "us-gov-west-1": {}
1315
1303
  }
1316
1304
  },
1317
1305
  "logs": {
1318
1306
  "endpoints": {
1319
- "cn-north-1": {}
1307
+ "us-gov-west-1": {}
1320
1308
  }
1321
1309
  },
1322
1310
  "monitoring": {
1323
1311
  "endpoints": {
1324
- "cn-north-1": {}
1325
- },
1326
- "defaults": {
1327
- "protocols": [
1328
- "http",
1329
- "https"
1330
- ]
1312
+ "us-gov-west-1": {}
1331
1313
  }
1332
1314
  },
1333
1315
  "rds": {
1334
1316
  "endpoints": {
1335
- "cn-north-1": {}
1317
+ "us-gov-west-1": {}
1336
1318
  }
1337
1319
  },
1338
1320
  "redshift": {
1339
1321
  "endpoints": {
1340
- "cn-north-1": {}
1322
+ "us-gov-west-1": {}
1341
1323
  }
1342
1324
  },
1343
1325
  "s3": {
1344
- "endpoints": {
1345
- "cn-north-1": {}
1346
- },
1347
1326
  "defaults": {
1348
- "protocols": [
1349
- "http",
1350
- "https"
1351
- ],
1352
1327
  "signatureVersions": [
1328
+ "s3",
1353
1329
  "s3v4"
1354
1330
  ]
1331
+ },
1332
+ "endpoints": {
1333
+ "fips-us-gov-west-1": {
1334
+ "credentialScope": {
1335
+ "region": "us-gov-west-1"
1336
+ },
1337
+ "hostname": "s3-fips-us-gov-west-1.amazonaws.com"
1338
+ },
1339
+ "us-gov-west-1": {
1340
+ "hostname": "s3-us-gov-west-1.amazonaws.com",
1341
+ "protocols": [
1342
+ "http",
1343
+ "https"
1344
+ ]
1345
+ }
1355
1346
  }
1356
1347
  },
1357
- "sns": {
1348
+ "snowball": {
1358
1349
  "endpoints": {
1359
- "cn-north-1": {}
1360
- },
1361
- "defaults": {
1362
- "protocols": [
1363
- "http",
1364
- "https"
1365
- ]
1350
+ "us-gov-west-1": {}
1366
1351
  }
1367
1352
  },
1368
- "sqs": {
1353
+ "sns": {
1369
1354
  "endpoints": {
1370
- "cn-north-1": {}
1371
- },
1372
- "defaults": {
1373
- "protocols": [
1374
- "http",
1375
- "https"
1376
- ],
1377
- "sslCommonName": "{region}.queue.{dnsSuffix}"
1355
+ "us-gov-west-1": {
1356
+ "protocols": [
1357
+ "http",
1358
+ "https"
1359
+ ]
1360
+ }
1378
1361
  }
1379
1362
  },
1380
- "storagegateway": {
1363
+ "sqs": {
1381
1364
  "endpoints": {
1382
- "cn-north-1": {}
1365
+ "us-gov-west-1": {
1366
+ "protocols": [
1367
+ "http",
1368
+ "https"
1369
+ ],
1370
+ "sslCommonName": "{region}.queue.{dnsSuffix}"
1371
+ }
1383
1372
  }
1384
1373
  },
1385
1374
  "streams.dynamodb": {
1386
- "endpoints": {
1387
- "cn-north-1": {}
1388
- },
1389
1375
  "defaults": {
1390
- "protocols": [
1391
- "http",
1392
- "https"
1393
- ],
1394
1376
  "credentialScope": {
1395
1377
  "service": "dynamodb"
1396
1378
  }
1379
+ },
1380
+ "endpoints": {
1381
+ "us-gov-west-1": {}
1397
1382
  }
1398
1383
  },
1399
1384
  "sts": {
1400
1385
  "endpoints": {
1401
- "cn-north-1": {}
1386
+ "us-gov-west-1": {}
1402
1387
  }
1403
1388
  },
1404
1389
  "swf": {
1405
1390
  "endpoints": {
1406
- "cn-north-1": {}
1391
+ "us-gov-west-1": {}
1407
1392
  }
1408
1393
  }
1409
1394
  }
1410
1395
  },
1411
1396
  {
1412
- "partition": "aws-us-gov",
1413
- "partitionName": "AWS GovCloud (US)",
1414
- "regionRegex": "^us\\-gov\\-\\w+\\-\\d+$",
1415
- "dnsSuffix": "amazonaws.com",
1416
1397
  "defaults": {
1417
1398
  "hostname": "{service}.{region}.{dnsSuffix}",
1418
1399
  "protocols": [
@@ -1422,199 +1403,218 @@
1422
1403
  "v4"
1423
1404
  ]
1424
1405
  },
1406
+ "dnsSuffix": "amazonaws.com.cn",
1407
+ "partition": "aws-cn",
1408
+ "partitionName": "AWS China",
1409
+ "regionRegex": "^cn\\-\\w+\\-\\d+$",
1425
1410
  "regions": {
1426
- "us-gov-west-1": {
1427
- "description": "AWS GovCloud (US)"
1411
+ "cn-north-1": {
1412
+ "description": "China (Beijing)"
1428
1413
  }
1429
1414
  },
1430
1415
  "services": {
1431
1416
  "autoscaling": {
1417
+ "defaults": {
1418
+ "protocols": [
1419
+ "http",
1420
+ "https"
1421
+ ]
1422
+ },
1432
1423
  "endpoints": {
1433
- "us-gov-west-1": {
1434
- "protocols": [
1435
- "http",
1436
- "https"
1437
- ]
1438
- }
1424
+ "cn-north-1": {}
1439
1425
  }
1440
1426
  },
1441
1427
  "cloudformation": {
1442
1428
  "endpoints": {
1443
- "us-gov-west-1": {}
1444
- }
1445
- },
1446
- "cloudhsm": {
1447
- "endpoints": {
1448
- "us-gov-west-1": {}
1429
+ "cn-north-1": {}
1449
1430
  }
1450
1431
  },
1451
1432
  "cloudtrail": {
1452
1433
  "endpoints": {
1453
- "us-gov-west-1": {}
1454
- }
1455
- },
1456
- "config": {
1457
- "endpoints": {
1458
- "us-gov-west-1": {}
1434
+ "cn-north-1": {}
1459
1435
  }
1460
1436
  },
1461
1437
  "directconnect": {
1462
1438
  "endpoints": {
1463
- "us-gov-west-1": {}
1439
+ "cn-north-1": {}
1464
1440
  }
1465
1441
  },
1466
1442
  "dynamodb": {
1443
+ "defaults": {
1444
+ "protocols": [
1445
+ "http",
1446
+ "https"
1447
+ ]
1448
+ },
1467
1449
  "endpoints": {
1468
- "us-gov-west-1": {}
1450
+ "cn-north-1": {}
1469
1451
  }
1470
1452
  },
1471
1453
  "ec2": {
1454
+ "defaults": {
1455
+ "protocols": [
1456
+ "http",
1457
+ "https"
1458
+ ]
1459
+ },
1472
1460
  "endpoints": {
1473
- "us-gov-west-1": {}
1461
+ "cn-north-1": {}
1474
1462
  }
1475
1463
  },
1476
1464
  "elasticache": {
1477
1465
  "endpoints": {
1478
- "us-gov-west-1": {}
1466
+ "cn-north-1": {}
1467
+ }
1468
+ },
1469
+ "elasticbeanstalk": {
1470
+ "endpoints": {
1471
+ "cn-north-1": {}
1479
1472
  }
1480
1473
  },
1481
1474
  "elasticloadbalancing": {
1475
+ "defaults": {
1476
+ "protocols": [
1477
+ "http",
1478
+ "https"
1479
+ ]
1480
+ },
1482
1481
  "endpoints": {
1483
- "us-gov-west-1": {
1484
- "protocols": [
1485
- "http",
1486
- "https"
1487
- ]
1488
- }
1482
+ "cn-north-1": {}
1489
1483
  }
1490
1484
  },
1491
1485
  "elasticmapreduce": {
1486
+ "defaults": {
1487
+ "protocols": [
1488
+ "http",
1489
+ "https"
1490
+ ]
1491
+ },
1492
1492
  "endpoints": {
1493
- "us-gov-west-1": {
1494
- "protocols": [
1495
- "http",
1496
- "https"
1497
- ]
1498
- }
1493
+ "cn-north-1": {}
1499
1494
  }
1500
1495
  },
1501
1496
  "glacier": {
1497
+ "defaults": {
1498
+ "protocols": [
1499
+ "http",
1500
+ "https"
1501
+ ]
1502
+ },
1502
1503
  "endpoints": {
1503
- "us-gov-west-1": {
1504
- "protocols": [
1505
- "http",
1506
- "https"
1507
- ]
1508
- }
1504
+ "cn-north-1": {}
1509
1505
  }
1510
1506
  },
1511
1507
  "iam": {
1512
1508
  "endpoints": {
1513
- "aws-us-gov-global": {
1514
- "hostname": "iam.us-gov.amazonaws.com",
1509
+ "aws-cn-global": {
1515
1510
  "credentialScope": {
1516
- "region": "us-gov-west-1"
1517
- }
1511
+ "region": "cn-north-1"
1512
+ },
1513
+ "hostname": "iam.cn-north-1.amazonaws.com.cn"
1518
1514
  }
1519
1515
  },
1520
1516
  "isRegionalized": false,
1521
- "partitionEndpoint": "aws-us-gov-global"
1517
+ "partitionEndpoint": "aws-cn-global"
1522
1518
  },
1523
- "kms": {
1519
+ "kinesis": {
1524
1520
  "endpoints": {
1525
- "us-gov-west-1": {}
1521
+ "cn-north-1": {}
1526
1522
  }
1527
1523
  },
1528
1524
  "logs": {
1529
1525
  "endpoints": {
1530
- "us-gov-west-1": {}
1526
+ "cn-north-1": {}
1531
1527
  }
1532
1528
  },
1533
1529
  "monitoring": {
1530
+ "defaults": {
1531
+ "protocols": [
1532
+ "http",
1533
+ "https"
1534
+ ]
1535
+ },
1534
1536
  "endpoints": {
1535
- "us-gov-west-1": {}
1537
+ "cn-north-1": {}
1536
1538
  }
1537
1539
  },
1538
1540
  "rds": {
1539
1541
  "endpoints": {
1540
- "us-gov-west-1": {}
1542
+ "cn-north-1": {}
1541
1543
  }
1542
1544
  },
1543
1545
  "redshift": {
1544
1546
  "endpoints": {
1545
- "us-gov-west-1": {}
1547
+ "cn-north-1": {}
1546
1548
  }
1547
1549
  },
1548
1550
  "s3": {
1549
- "endpoints": {
1550
- "us-gov-west-1": {
1551
- "hostname": "s3-us-gov-west-1.amazonaws.com",
1552
- "protocols": [
1553
- "http",
1554
- "https"
1555
- ]
1556
- },
1557
- "fips-us-gov-west-1": {
1558
- "credentialScope": {
1559
- "region": "us-gov-west-1"
1560
- },
1561
- "hostname": "s3-fips-us-gov-west-1.amazonaws.com"
1562
- }
1563
- },
1564
1551
  "defaults": {
1552
+ "protocols": [
1553
+ "http",
1554
+ "https"
1555
+ ],
1565
1556
  "signatureVersions": [
1566
- "s3",
1567
1557
  "s3v4"
1568
1558
  ]
1569
- }
1570
- },
1571
- "snowball": {
1559
+ },
1572
1560
  "endpoints": {
1573
- "us-gov-west-1": {}
1561
+ "cn-north-1": {}
1574
1562
  }
1575
1563
  },
1576
1564
  "sns": {
1565
+ "defaults": {
1566
+ "protocols": [
1567
+ "http",
1568
+ "https"
1569
+ ]
1570
+ },
1577
1571
  "endpoints": {
1578
- "us-gov-west-1": {
1579
- "protocols": [
1580
- "http",
1581
- "https"
1582
- ]
1583
- }
1572
+ "cn-north-1": {}
1584
1573
  }
1585
1574
  },
1586
1575
  "sqs": {
1576
+ "defaults": {
1577
+ "protocols": [
1578
+ "http",
1579
+ "https"
1580
+ ],
1581
+ "sslCommonName": "{region}.queue.{dnsSuffix}"
1582
+ },
1587
1583
  "endpoints": {
1588
- "us-gov-west-1": {
1589
- "sslCommonName": "{region}.queue.{dnsSuffix}",
1590
- "protocols": [
1591
- "http",
1592
- "https"
1593
- ]
1594
- }
1584
+ "cn-north-1": {}
1595
1585
  }
1596
1586
  },
1597
- "streams.dynamodb": {
1587
+ "storagegateway": {
1598
1588
  "endpoints": {
1599
- "us-gov-west-1": {}
1600
- },
1589
+ "cn-north-1": {}
1590
+ }
1591
+ },
1592
+ "streams.dynamodb": {
1601
1593
  "defaults": {
1602
1594
  "credentialScope": {
1603
1595
  "service": "dynamodb"
1604
- }
1596
+ },
1597
+ "protocols": [
1598
+ "http",
1599
+ "https"
1600
+ ]
1601
+ },
1602
+ "endpoints": {
1603
+ "cn-north-1": {}
1605
1604
  }
1606
1605
  },
1607
1606
  "sts": {
1608
1607
  "endpoints": {
1609
- "us-gov-west-1": {}
1608
+ "cn-north-1": {}
1610
1609
  }
1611
1610
  },
1612
1611
  "swf": {
1613
1612
  "endpoints": {
1614
- "us-gov-west-1": {}
1613
+ "cn-north-1": {}
1615
1614
  }
1616
1615
  }
1617
1616
  }
1618
1617
  }
1619
- ]
1618
+ ],
1619
+ "version": 3
1620
1620
  }