aws-partitions 1.281.0 → 1.309.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.
- checksums.yaml +5 -5
- data/lib/aws-partitions.rb +2 -0
- data/lib/aws-partitions/endpoint_provider.rb +1 -1
- data/lib/aws-partitions/partition.rb +4 -4
- data/lib/aws-partitions/partition_list.rb +2 -2
- data/partitions.json +2098 -78
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: '0915c5a11755355511e25d59f2a8f4a53beb8fac6744fe211334626342fce948'
|
|
4
|
+
data.tar.gz: 29e143d84c1be6a6063d2d45e86794244ab812ce17cae973c6d52b32ca3cd33d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 387f6e29f7e79a48c208d1bff83dabfd4b9a7bc43c2eb12b44ed1ea967735d29424460ed35056fb000cf0c8e97829e8ce475824babd73df289da44ee624d59b0
|
|
7
|
+
data.tar.gz: 46b0690ae1081a626ba3590489c06645401923d469ea7314058ebb344c112d34b42de0a0244f764de251c93d8e3a07c0f36cc7cff48e54a85586ebe914a83d05
|
data/lib/aws-partitions.rb
CHANGED
|
@@ -330,6 +330,7 @@ module Aws
|
|
|
330
330
|
'IoTEventsData' => 'data.iotevents',
|
|
331
331
|
'IoTJobsDataPlane' => 'data.jobs.iot',
|
|
332
332
|
'IoTSecureTunneling' => 'api.tunneling.iot',
|
|
333
|
+
'IoTSiteWise' => 'iotsitewise',
|
|
333
334
|
'IoTThingsGraph' => 'iotthingsgraph',
|
|
334
335
|
'KMS' => 'kms',
|
|
335
336
|
'Kafka' => 'kafka',
|
|
@@ -426,6 +427,7 @@ module Aws
|
|
|
426
427
|
'States' => 'states',
|
|
427
428
|
'StorageGateway' => 'storagegateway',
|
|
428
429
|
'Support' => 'support',
|
|
430
|
+
'Synthetics' => 'synthetics',
|
|
429
431
|
'Textract' => 'textract',
|
|
430
432
|
'TranscribeService' => 'transcribe',
|
|
431
433
|
'TranscribeStreamingService' => 'transcribestreaming',
|
|
@@ -116,7 +116,7 @@ module Aws
|
|
|
116
116
|
end
|
|
117
117
|
|
|
118
118
|
class << self
|
|
119
|
-
def resolve(region, service, sts_regional_endpoints = '
|
|
119
|
+
def resolve(region, service, sts_regional_endpoints = 'regional')
|
|
120
120
|
default_provider.resolve(region, service, sts_regional_endpoints)
|
|
121
121
|
end
|
|
122
122
|
|
|
@@ -21,8 +21,8 @@ module Aws
|
|
|
21
21
|
if @regions.key?(region_name)
|
|
22
22
|
@regions[region_name]
|
|
23
23
|
else
|
|
24
|
-
msg = "invalid region name #{region_name.inspect}; valid region "
|
|
25
|
-
|
|
24
|
+
msg = "invalid region name #{region_name.inspect}; valid region "\
|
|
25
|
+
"names include #{@regions.keys.join(', ')}"
|
|
26
26
|
raise ArgumentError, msg
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -45,8 +45,8 @@ module Aws
|
|
|
45
45
|
if @services.key?(service_name)
|
|
46
46
|
@services[service_name]
|
|
47
47
|
else
|
|
48
|
-
msg = "invalid service name #{service_name.inspect}; valid service "
|
|
49
|
-
|
|
48
|
+
msg = "invalid service name #{service_name.inspect}; valid service "\
|
|
49
|
+
"names include #{@services.keys.join(', ')}"
|
|
50
50
|
raise ArgumentError, msg
|
|
51
51
|
end
|
|
52
52
|
end
|
|
@@ -19,8 +19,8 @@ module Aws
|
|
|
19
19
|
if @partitions.key?(partition_name)
|
|
20
20
|
@partitions[partition_name]
|
|
21
21
|
else
|
|
22
|
-
msg = "invalid partition name #{partition_name.inspect}; valid "
|
|
23
|
-
|
|
22
|
+
msg = "invalid partition name #{partition_name.inspect}; valid "\
|
|
23
|
+
"partition names include %s" % [@partitions.keys.join(', ')]
|
|
24
24
|
raise ArgumentError, msg
|
|
25
25
|
end
|
|
26
26
|
end
|
data/partitions.json
CHANGED
|
@@ -8,8 +8,11 @@
|
|
|
8
8
|
"dnsSuffix" : "amazonaws.com",
|
|
9
9
|
"partition" : "aws",
|
|
10
10
|
"partitionName" : "AWS Standard",
|
|
11
|
-
"regionRegex" : "^(us|eu|ap|sa|ca|me)\\-\\w+\\-\\d+$",
|
|
11
|
+
"regionRegex" : "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
|
|
12
12
|
"regions" : {
|
|
13
|
+
"af-south-1" : {
|
|
14
|
+
"description" : "Africa (Cape Town)"
|
|
15
|
+
},
|
|
13
16
|
"ap-east-1" : {
|
|
14
17
|
"description" : "Asia Pacific (Hong Kong)"
|
|
15
18
|
},
|
|
@@ -37,6 +40,9 @@
|
|
|
37
40
|
"eu-north-1" : {
|
|
38
41
|
"description" : "EU (Stockholm)"
|
|
39
42
|
},
|
|
43
|
+
"eu-south-1" : {
|
|
44
|
+
"description" : "Europe (Milan)"
|
|
45
|
+
},
|
|
40
46
|
"eu-west-1" : {
|
|
41
47
|
"description" : "EU (Ireland)"
|
|
42
48
|
},
|
|
@@ -73,6 +79,7 @@
|
|
|
73
79
|
},
|
|
74
80
|
"access-analyzer" : {
|
|
75
81
|
"endpoints" : {
|
|
82
|
+
"af-south-1" : { },
|
|
76
83
|
"ap-east-1" : { },
|
|
77
84
|
"ap-northeast-1" : { },
|
|
78
85
|
"ap-northeast-2" : { },
|
|
@@ -82,6 +89,7 @@
|
|
|
82
89
|
"ca-central-1" : { },
|
|
83
90
|
"eu-central-1" : { },
|
|
84
91
|
"eu-north-1" : { },
|
|
92
|
+
"eu-south-1" : { },
|
|
85
93
|
"eu-west-1" : { },
|
|
86
94
|
"eu-west-2" : { },
|
|
87
95
|
"eu-west-3" : { },
|
|
@@ -95,6 +103,7 @@
|
|
|
95
103
|
},
|
|
96
104
|
"acm" : {
|
|
97
105
|
"endpoints" : {
|
|
106
|
+
"af-south-1" : { },
|
|
98
107
|
"ap-east-1" : { },
|
|
99
108
|
"ap-northeast-1" : { },
|
|
100
109
|
"ap-northeast-2" : { },
|
|
@@ -110,6 +119,7 @@
|
|
|
110
119
|
},
|
|
111
120
|
"eu-central-1" : { },
|
|
112
121
|
"eu-north-1" : { },
|
|
122
|
+
"eu-south-1" : { },
|
|
113
123
|
"eu-west-1" : { },
|
|
114
124
|
"eu-west-2" : { },
|
|
115
125
|
"eu-west-3" : { },
|
|
@@ -202,6 +212,12 @@
|
|
|
202
212
|
},
|
|
203
213
|
"api.ecr" : {
|
|
204
214
|
"endpoints" : {
|
|
215
|
+
"af-south-1" : {
|
|
216
|
+
"credentialScope" : {
|
|
217
|
+
"region" : "af-south-1"
|
|
218
|
+
},
|
|
219
|
+
"hostname" : "api.ecr.af-south-1.amazonaws.com"
|
|
220
|
+
},
|
|
205
221
|
"ap-east-1" : {
|
|
206
222
|
"credentialScope" : {
|
|
207
223
|
"region" : "ap-east-1"
|
|
@@ -256,6 +272,12 @@
|
|
|
256
272
|
},
|
|
257
273
|
"hostname" : "api.ecr.eu-north-1.amazonaws.com"
|
|
258
274
|
},
|
|
275
|
+
"eu-south-1" : {
|
|
276
|
+
"credentialScope" : {
|
|
277
|
+
"region" : "eu-south-1"
|
|
278
|
+
},
|
|
279
|
+
"hostname" : "api.ecr.eu-south-1.amazonaws.com"
|
|
280
|
+
},
|
|
259
281
|
"eu-west-1" : {
|
|
260
282
|
"credentialScope" : {
|
|
261
283
|
"region" : "eu-west-1"
|
|
@@ -274,6 +296,30 @@
|
|
|
274
296
|
},
|
|
275
297
|
"hostname" : "api.ecr.eu-west-3.amazonaws.com"
|
|
276
298
|
},
|
|
299
|
+
"fips-us-east-1" : {
|
|
300
|
+
"credentialScope" : {
|
|
301
|
+
"region" : "us-east-1"
|
|
302
|
+
},
|
|
303
|
+
"hostname" : "ecr-fips.us-east-1.amazonaws.com"
|
|
304
|
+
},
|
|
305
|
+
"fips-us-east-2" : {
|
|
306
|
+
"credentialScope" : {
|
|
307
|
+
"region" : "us-east-2"
|
|
308
|
+
},
|
|
309
|
+
"hostname" : "ecr-fips.us-east-2.amazonaws.com"
|
|
310
|
+
},
|
|
311
|
+
"fips-us-west-1" : {
|
|
312
|
+
"credentialScope" : {
|
|
313
|
+
"region" : "us-west-1"
|
|
314
|
+
},
|
|
315
|
+
"hostname" : "ecr-fips.us-west-1.amazonaws.com"
|
|
316
|
+
},
|
|
317
|
+
"fips-us-west-2" : {
|
|
318
|
+
"credentialScope" : {
|
|
319
|
+
"region" : "us-west-2"
|
|
320
|
+
},
|
|
321
|
+
"hostname" : "ecr-fips.us-west-2.amazonaws.com"
|
|
322
|
+
},
|
|
277
323
|
"me-south-1" : {
|
|
278
324
|
"credentialScope" : {
|
|
279
325
|
"region" : "me-south-1"
|
|
@@ -312,6 +358,28 @@
|
|
|
312
358
|
}
|
|
313
359
|
}
|
|
314
360
|
},
|
|
361
|
+
"api.elastic-inference" : {
|
|
362
|
+
"endpoints" : {
|
|
363
|
+
"ap-northeast-1" : {
|
|
364
|
+
"hostname" : "api.elastic-inference.ap-northeast-1.amazonaws.com"
|
|
365
|
+
},
|
|
366
|
+
"ap-northeast-2" : {
|
|
367
|
+
"hostname" : "api.elastic-inference.ap-northeast-2.amazonaws.com"
|
|
368
|
+
},
|
|
369
|
+
"eu-west-1" : {
|
|
370
|
+
"hostname" : "api.elastic-inference.eu-west-1.amazonaws.com"
|
|
371
|
+
},
|
|
372
|
+
"us-east-1" : {
|
|
373
|
+
"hostname" : "api.elastic-inference.us-east-1.amazonaws.com"
|
|
374
|
+
},
|
|
375
|
+
"us-east-2" : {
|
|
376
|
+
"hostname" : "api.elastic-inference.us-east-2.amazonaws.com"
|
|
377
|
+
},
|
|
378
|
+
"us-west-2" : {
|
|
379
|
+
"hostname" : "api.elastic-inference.us-west-2.amazonaws.com"
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
},
|
|
315
383
|
"api.mediatailor" : {
|
|
316
384
|
"endpoints" : {
|
|
317
385
|
"ap-northeast-1" : { },
|
|
@@ -382,6 +450,7 @@
|
|
|
382
450
|
},
|
|
383
451
|
"apigateway" : {
|
|
384
452
|
"endpoints" : {
|
|
453
|
+
"af-south-1" : { },
|
|
385
454
|
"ap-east-1" : { },
|
|
386
455
|
"ap-northeast-1" : { },
|
|
387
456
|
"ap-northeast-2" : { },
|
|
@@ -391,6 +460,7 @@
|
|
|
391
460
|
"ca-central-1" : { },
|
|
392
461
|
"eu-central-1" : { },
|
|
393
462
|
"eu-north-1" : { },
|
|
463
|
+
"eu-south-1" : { },
|
|
394
464
|
"eu-west-1" : { },
|
|
395
465
|
"eu-west-2" : { },
|
|
396
466
|
"eu-west-3" : { },
|
|
@@ -407,6 +477,7 @@
|
|
|
407
477
|
"protocols" : [ "http", "https" ]
|
|
408
478
|
},
|
|
409
479
|
"endpoints" : {
|
|
480
|
+
"af-south-1" : { },
|
|
410
481
|
"ap-east-1" : { },
|
|
411
482
|
"ap-northeast-1" : { },
|
|
412
483
|
"ap-northeast-2" : { },
|
|
@@ -416,6 +487,7 @@
|
|
|
416
487
|
"ca-central-1" : { },
|
|
417
488
|
"eu-central-1" : { },
|
|
418
489
|
"eu-north-1" : { },
|
|
490
|
+
"eu-south-1" : { },
|
|
419
491
|
"eu-west-1" : { },
|
|
420
492
|
"eu-west-2" : { },
|
|
421
493
|
"eu-west-3" : { },
|
|
@@ -515,6 +587,7 @@
|
|
|
515
587
|
"protocols" : [ "http", "https" ]
|
|
516
588
|
},
|
|
517
589
|
"endpoints" : {
|
|
590
|
+
"af-south-1" : { },
|
|
518
591
|
"ap-east-1" : { },
|
|
519
592
|
"ap-northeast-1" : { },
|
|
520
593
|
"ap-northeast-2" : { },
|
|
@@ -524,6 +597,7 @@
|
|
|
524
597
|
"ca-central-1" : { },
|
|
525
598
|
"eu-central-1" : { },
|
|
526
599
|
"eu-north-1" : { },
|
|
600
|
+
"eu-south-1" : { },
|
|
527
601
|
"eu-west-1" : { },
|
|
528
602
|
"eu-west-2" : { },
|
|
529
603
|
"eu-west-3" : { },
|
|
@@ -591,6 +665,30 @@
|
|
|
591
665
|
"eu-west-1" : { },
|
|
592
666
|
"eu-west-2" : { },
|
|
593
667
|
"eu-west-3" : { },
|
|
668
|
+
"fips-us-east-1" : {
|
|
669
|
+
"credentialScope" : {
|
|
670
|
+
"region" : "us-east-1"
|
|
671
|
+
},
|
|
672
|
+
"hostname" : "fips.batch.us-east-1.amazonaws.com"
|
|
673
|
+
},
|
|
674
|
+
"fips-us-east-2" : {
|
|
675
|
+
"credentialScope" : {
|
|
676
|
+
"region" : "us-east-2"
|
|
677
|
+
},
|
|
678
|
+
"hostname" : "fips.batch.us-east-2.amazonaws.com"
|
|
679
|
+
},
|
|
680
|
+
"fips-us-west-1" : {
|
|
681
|
+
"credentialScope" : {
|
|
682
|
+
"region" : "us-west-1"
|
|
683
|
+
},
|
|
684
|
+
"hostname" : "fips.batch.us-west-1.amazonaws.com"
|
|
685
|
+
},
|
|
686
|
+
"fips-us-west-2" : {
|
|
687
|
+
"credentialScope" : {
|
|
688
|
+
"region" : "us-west-2"
|
|
689
|
+
},
|
|
690
|
+
"hostname" : "fips.batch.us-west-2.amazonaws.com"
|
|
691
|
+
},
|
|
594
692
|
"me-south-1" : { },
|
|
595
693
|
"sa-east-1" : { },
|
|
596
694
|
"us-east-1" : { },
|
|
@@ -672,6 +770,7 @@
|
|
|
672
770
|
},
|
|
673
771
|
"cloudformation" : {
|
|
674
772
|
"endpoints" : {
|
|
773
|
+
"af-south-1" : { },
|
|
675
774
|
"ap-east-1" : { },
|
|
676
775
|
"ap-northeast-1" : { },
|
|
677
776
|
"ap-northeast-2" : { },
|
|
@@ -681,15 +780,40 @@
|
|
|
681
780
|
"ca-central-1" : { },
|
|
682
781
|
"eu-central-1" : { },
|
|
683
782
|
"eu-north-1" : { },
|
|
783
|
+
"eu-south-1" : { },
|
|
684
784
|
"eu-west-1" : { },
|
|
685
785
|
"eu-west-2" : { },
|
|
686
786
|
"eu-west-3" : { },
|
|
687
787
|
"me-south-1" : { },
|
|
688
788
|
"sa-east-1" : { },
|
|
689
789
|
"us-east-1" : { },
|
|
790
|
+
"us-east-1-fips" : {
|
|
791
|
+
"credentialScope" : {
|
|
792
|
+
"region" : "us-east-1"
|
|
793
|
+
},
|
|
794
|
+
"hostname" : "cloudformation-fips.us-east-1.amazonaws.com"
|
|
795
|
+
},
|
|
690
796
|
"us-east-2" : { },
|
|
797
|
+
"us-east-2-fips" : {
|
|
798
|
+
"credentialScope" : {
|
|
799
|
+
"region" : "us-east-2"
|
|
800
|
+
},
|
|
801
|
+
"hostname" : "cloudformation-fips.us-east-2.amazonaws.com"
|
|
802
|
+
},
|
|
691
803
|
"us-west-1" : { },
|
|
692
|
-
"us-west-
|
|
804
|
+
"us-west-1-fips" : {
|
|
805
|
+
"credentialScope" : {
|
|
806
|
+
"region" : "us-west-1"
|
|
807
|
+
},
|
|
808
|
+
"hostname" : "cloudformation-fips.us-west-1.amazonaws.com"
|
|
809
|
+
},
|
|
810
|
+
"us-west-2" : { },
|
|
811
|
+
"us-west-2-fips" : {
|
|
812
|
+
"credentialScope" : {
|
|
813
|
+
"region" : "us-west-2"
|
|
814
|
+
},
|
|
815
|
+
"hostname" : "cloudformation-fips.us-west-2.amazonaws.com"
|
|
816
|
+
}
|
|
693
817
|
}
|
|
694
818
|
},
|
|
695
819
|
"cloudfront" : {
|
|
@@ -762,6 +886,7 @@
|
|
|
762
886
|
},
|
|
763
887
|
"cloudtrail" : {
|
|
764
888
|
"endpoints" : {
|
|
889
|
+
"af-south-1" : { },
|
|
765
890
|
"ap-east-1" : { },
|
|
766
891
|
"ap-northeast-1" : { },
|
|
767
892
|
"ap-northeast-2" : { },
|
|
@@ -771,9 +896,34 @@
|
|
|
771
896
|
"ca-central-1" : { },
|
|
772
897
|
"eu-central-1" : { },
|
|
773
898
|
"eu-north-1" : { },
|
|
899
|
+
"eu-south-1" : { },
|
|
774
900
|
"eu-west-1" : { },
|
|
775
901
|
"eu-west-2" : { },
|
|
776
902
|
"eu-west-3" : { },
|
|
903
|
+
"fips-us-east-1" : {
|
|
904
|
+
"credentialScope" : {
|
|
905
|
+
"region" : "us-east-1"
|
|
906
|
+
},
|
|
907
|
+
"hostname" : "cloudtrail-fips.us-east-1.amazonaws.com"
|
|
908
|
+
},
|
|
909
|
+
"fips-us-east-2" : {
|
|
910
|
+
"credentialScope" : {
|
|
911
|
+
"region" : "us-east-2"
|
|
912
|
+
},
|
|
913
|
+
"hostname" : "cloudtrail-fips.us-east-2.amazonaws.com"
|
|
914
|
+
},
|
|
915
|
+
"fips-us-west-1" : {
|
|
916
|
+
"credentialScope" : {
|
|
917
|
+
"region" : "us-west-1"
|
|
918
|
+
},
|
|
919
|
+
"hostname" : "cloudtrail-fips.us-west-1.amazonaws.com"
|
|
920
|
+
},
|
|
921
|
+
"fips-us-west-2" : {
|
|
922
|
+
"credentialScope" : {
|
|
923
|
+
"region" : "us-west-2"
|
|
924
|
+
},
|
|
925
|
+
"hostname" : "cloudtrail-fips.us-west-2.amazonaws.com"
|
|
926
|
+
},
|
|
777
927
|
"me-south-1" : { },
|
|
778
928
|
"sa-east-1" : { },
|
|
779
929
|
"us-east-1" : { },
|
|
@@ -858,6 +1008,7 @@
|
|
|
858
1008
|
},
|
|
859
1009
|
"codedeploy" : {
|
|
860
1010
|
"endpoints" : {
|
|
1011
|
+
"af-south-1" : { },
|
|
861
1012
|
"ap-east-1" : { },
|
|
862
1013
|
"ap-northeast-1" : { },
|
|
863
1014
|
"ap-northeast-2" : { },
|
|
@@ -867,6 +1018,7 @@
|
|
|
867
1018
|
"ca-central-1" : { },
|
|
868
1019
|
"eu-central-1" : { },
|
|
869
1020
|
"eu-north-1" : { },
|
|
1021
|
+
"eu-south-1" : { },
|
|
870
1022
|
"eu-west-1" : { },
|
|
871
1023
|
"eu-west-2" : { },
|
|
872
1024
|
"eu-west-3" : { },
|
|
@@ -915,6 +1067,36 @@
|
|
|
915
1067
|
"eu-west-1" : { },
|
|
916
1068
|
"eu-west-2" : { },
|
|
917
1069
|
"eu-west-3" : { },
|
|
1070
|
+
"fips-ca-central-1" : {
|
|
1071
|
+
"credentialScope" : {
|
|
1072
|
+
"region" : "ca-central-1"
|
|
1073
|
+
},
|
|
1074
|
+
"hostname" : "codepipeline-fips.ca-central-1.amazonaws.com"
|
|
1075
|
+
},
|
|
1076
|
+
"fips-us-east-1" : {
|
|
1077
|
+
"credentialScope" : {
|
|
1078
|
+
"region" : "us-east-1"
|
|
1079
|
+
},
|
|
1080
|
+
"hostname" : "codepipeline-fips.us-east-1.amazonaws.com"
|
|
1081
|
+
},
|
|
1082
|
+
"fips-us-east-2" : {
|
|
1083
|
+
"credentialScope" : {
|
|
1084
|
+
"region" : "us-east-2"
|
|
1085
|
+
},
|
|
1086
|
+
"hostname" : "codepipeline-fips.us-east-2.amazonaws.com"
|
|
1087
|
+
},
|
|
1088
|
+
"fips-us-west-1" : {
|
|
1089
|
+
"credentialScope" : {
|
|
1090
|
+
"region" : "us-west-1"
|
|
1091
|
+
},
|
|
1092
|
+
"hostname" : "codepipeline-fips.us-west-1.amazonaws.com"
|
|
1093
|
+
},
|
|
1094
|
+
"fips-us-west-2" : {
|
|
1095
|
+
"credentialScope" : {
|
|
1096
|
+
"region" : "us-west-2"
|
|
1097
|
+
},
|
|
1098
|
+
"hostname" : "codepipeline-fips.us-west-2.amazonaws.com"
|
|
1099
|
+
},
|
|
918
1100
|
"sa-east-1" : { },
|
|
919
1101
|
"us-east-1" : { },
|
|
920
1102
|
"us-east-2" : { },
|
|
@@ -939,6 +1121,26 @@
|
|
|
939
1121
|
"us-west-2" : { }
|
|
940
1122
|
}
|
|
941
1123
|
},
|
|
1124
|
+
"codestar-connections" : {
|
|
1125
|
+
"endpoints" : {
|
|
1126
|
+
"ap-northeast-1" : { },
|
|
1127
|
+
"ap-northeast-2" : { },
|
|
1128
|
+
"ap-south-1" : { },
|
|
1129
|
+
"ap-southeast-1" : { },
|
|
1130
|
+
"ap-southeast-2" : { },
|
|
1131
|
+
"ca-central-1" : { },
|
|
1132
|
+
"eu-central-1" : { },
|
|
1133
|
+
"eu-north-1" : { },
|
|
1134
|
+
"eu-west-1" : { },
|
|
1135
|
+
"eu-west-2" : { },
|
|
1136
|
+
"eu-west-3" : { },
|
|
1137
|
+
"sa-east-1" : { },
|
|
1138
|
+
"us-east-1" : { },
|
|
1139
|
+
"us-east-2" : { },
|
|
1140
|
+
"us-west-1" : { },
|
|
1141
|
+
"us-west-2" : { }
|
|
1142
|
+
}
|
|
1143
|
+
},
|
|
942
1144
|
"cognito-identity" : {
|
|
943
1145
|
"endpoints" : {
|
|
944
1146
|
"ap-northeast-1" : { },
|
|
@@ -950,6 +1152,24 @@
|
|
|
950
1152
|
"eu-central-1" : { },
|
|
951
1153
|
"eu-west-1" : { },
|
|
952
1154
|
"eu-west-2" : { },
|
|
1155
|
+
"fips-us-east-1" : {
|
|
1156
|
+
"credentialScope" : {
|
|
1157
|
+
"region" : "us-east-1"
|
|
1158
|
+
},
|
|
1159
|
+
"hostname" : "cognito-identity-fips.us-east-1.amazonaws.com"
|
|
1160
|
+
},
|
|
1161
|
+
"fips-us-east-2" : {
|
|
1162
|
+
"credentialScope" : {
|
|
1163
|
+
"region" : "us-east-2"
|
|
1164
|
+
},
|
|
1165
|
+
"hostname" : "cognito-identity-fips.us-east-2.amazonaws.com"
|
|
1166
|
+
},
|
|
1167
|
+
"fips-us-west-2" : {
|
|
1168
|
+
"credentialScope" : {
|
|
1169
|
+
"region" : "us-west-2"
|
|
1170
|
+
},
|
|
1171
|
+
"hostname" : "cognito-identity-fips.us-west-2.amazonaws.com"
|
|
1172
|
+
},
|
|
953
1173
|
"us-east-1" : { },
|
|
954
1174
|
"us-east-2" : { },
|
|
955
1175
|
"us-west-2" : { }
|
|
@@ -966,6 +1186,24 @@
|
|
|
966
1186
|
"eu-central-1" : { },
|
|
967
1187
|
"eu-west-1" : { },
|
|
968
1188
|
"eu-west-2" : { },
|
|
1189
|
+
"fips-us-east-1" : {
|
|
1190
|
+
"credentialScope" : {
|
|
1191
|
+
"region" : "us-east-1"
|
|
1192
|
+
},
|
|
1193
|
+
"hostname" : "cognito-idp-fips.us-east-1.amazonaws.com"
|
|
1194
|
+
},
|
|
1195
|
+
"fips-us-east-2" : {
|
|
1196
|
+
"credentialScope" : {
|
|
1197
|
+
"region" : "us-east-2"
|
|
1198
|
+
},
|
|
1199
|
+
"hostname" : "cognito-idp-fips.us-east-2.amazonaws.com"
|
|
1200
|
+
},
|
|
1201
|
+
"fips-us-west-2" : {
|
|
1202
|
+
"credentialScope" : {
|
|
1203
|
+
"region" : "us-west-2"
|
|
1204
|
+
},
|
|
1205
|
+
"hostname" : "cognito-idp-fips.us-west-2.amazonaws.com"
|
|
1206
|
+
},
|
|
969
1207
|
"us-east-1" : { },
|
|
970
1208
|
"us-east-2" : { },
|
|
971
1209
|
"us-west-2" : { }
|
|
@@ -1000,6 +1238,24 @@
|
|
|
1000
1238
|
"eu-central-1" : { },
|
|
1001
1239
|
"eu-west-1" : { },
|
|
1002
1240
|
"eu-west-2" : { },
|
|
1241
|
+
"fips-us-east-1" : {
|
|
1242
|
+
"credentialScope" : {
|
|
1243
|
+
"region" : "us-east-1"
|
|
1244
|
+
},
|
|
1245
|
+
"hostname" : "comprehend-fips.us-east-1.amazonaws.com"
|
|
1246
|
+
},
|
|
1247
|
+
"fips-us-east-2" : {
|
|
1248
|
+
"credentialScope" : {
|
|
1249
|
+
"region" : "us-east-2"
|
|
1250
|
+
},
|
|
1251
|
+
"hostname" : "comprehend-fips.us-east-2.amazonaws.com"
|
|
1252
|
+
},
|
|
1253
|
+
"fips-us-west-2" : {
|
|
1254
|
+
"credentialScope" : {
|
|
1255
|
+
"region" : "us-west-2"
|
|
1256
|
+
},
|
|
1257
|
+
"hostname" : "comprehend-fips.us-west-2.amazonaws.com"
|
|
1258
|
+
},
|
|
1003
1259
|
"us-east-1" : { },
|
|
1004
1260
|
"us-east-2" : { },
|
|
1005
1261
|
"us-west-2" : { }
|
|
@@ -1011,6 +1267,24 @@
|
|
|
1011
1267
|
"ca-central-1" : { },
|
|
1012
1268
|
"eu-west-1" : { },
|
|
1013
1269
|
"eu-west-2" : { },
|
|
1270
|
+
"fips-us-east-1" : {
|
|
1271
|
+
"credentialScope" : {
|
|
1272
|
+
"region" : "us-east-1"
|
|
1273
|
+
},
|
|
1274
|
+
"hostname" : "comprehendmedical-fips.us-east-1.amazonaws.com"
|
|
1275
|
+
},
|
|
1276
|
+
"fips-us-east-2" : {
|
|
1277
|
+
"credentialScope" : {
|
|
1278
|
+
"region" : "us-east-2"
|
|
1279
|
+
},
|
|
1280
|
+
"hostname" : "comprehendmedical-fips.us-east-2.amazonaws.com"
|
|
1281
|
+
},
|
|
1282
|
+
"fips-us-west-2" : {
|
|
1283
|
+
"credentialScope" : {
|
|
1284
|
+
"region" : "us-west-2"
|
|
1285
|
+
},
|
|
1286
|
+
"hostname" : "comprehendmedical-fips.us-west-2.amazonaws.com"
|
|
1287
|
+
},
|
|
1014
1288
|
"us-east-1" : { },
|
|
1015
1289
|
"us-east-2" : { },
|
|
1016
1290
|
"us-west-2" : { }
|
|
@@ -1090,6 +1364,7 @@
|
|
|
1090
1364
|
"eu-central-1" : { },
|
|
1091
1365
|
"eu-north-1" : { },
|
|
1092
1366
|
"eu-west-1" : { },
|
|
1367
|
+
"eu-west-2" : { },
|
|
1093
1368
|
"us-east-1" : { },
|
|
1094
1369
|
"us-west-2" : { }
|
|
1095
1370
|
}
|
|
@@ -1132,6 +1407,12 @@
|
|
|
1132
1407
|
"eu-west-1" : { },
|
|
1133
1408
|
"eu-west-2" : { },
|
|
1134
1409
|
"eu-west-3" : { },
|
|
1410
|
+
"fips-ca-central-1" : {
|
|
1411
|
+
"credentialScope" : {
|
|
1412
|
+
"region" : "ca-central-1"
|
|
1413
|
+
},
|
|
1414
|
+
"hostname" : "datasync-fips.ca-central-1.amazonaws.com"
|
|
1415
|
+
},
|
|
1135
1416
|
"fips-us-east-1" : {
|
|
1136
1417
|
"credentialScope" : {
|
|
1137
1418
|
"region" : "us-east-1"
|
|
@@ -1188,6 +1469,7 @@
|
|
|
1188
1469
|
},
|
|
1189
1470
|
"directconnect" : {
|
|
1190
1471
|
"endpoints" : {
|
|
1472
|
+
"af-south-1" : { },
|
|
1191
1473
|
"ap-east-1" : { },
|
|
1192
1474
|
"ap-northeast-1" : { },
|
|
1193
1475
|
"ap-northeast-2" : { },
|
|
@@ -1197,9 +1479,34 @@
|
|
|
1197
1479
|
"ca-central-1" : { },
|
|
1198
1480
|
"eu-central-1" : { },
|
|
1199
1481
|
"eu-north-1" : { },
|
|
1482
|
+
"eu-south-1" : { },
|
|
1200
1483
|
"eu-west-1" : { },
|
|
1201
1484
|
"eu-west-2" : { },
|
|
1202
1485
|
"eu-west-3" : { },
|
|
1486
|
+
"fips-us-east-1" : {
|
|
1487
|
+
"credentialScope" : {
|
|
1488
|
+
"region" : "us-east-1"
|
|
1489
|
+
},
|
|
1490
|
+
"hostname" : "directconnect-fips.us-east-1.amazonaws.com"
|
|
1491
|
+
},
|
|
1492
|
+
"fips-us-east-2" : {
|
|
1493
|
+
"credentialScope" : {
|
|
1494
|
+
"region" : "us-east-2"
|
|
1495
|
+
},
|
|
1496
|
+
"hostname" : "directconnect-fips.us-east-2.amazonaws.com"
|
|
1497
|
+
},
|
|
1498
|
+
"fips-us-west-1" : {
|
|
1499
|
+
"credentialScope" : {
|
|
1500
|
+
"region" : "us-west-1"
|
|
1501
|
+
},
|
|
1502
|
+
"hostname" : "directconnect-fips.us-west-1.amazonaws.com"
|
|
1503
|
+
},
|
|
1504
|
+
"fips-us-west-2" : {
|
|
1505
|
+
"credentialScope" : {
|
|
1506
|
+
"region" : "us-west-2"
|
|
1507
|
+
},
|
|
1508
|
+
"hostname" : "directconnect-fips.us-west-2.amazonaws.com"
|
|
1509
|
+
},
|
|
1203
1510
|
"me-south-1" : { },
|
|
1204
1511
|
"sa-east-1" : { },
|
|
1205
1512
|
"us-east-1" : { },
|
|
@@ -1210,12 +1517,14 @@
|
|
|
1210
1517
|
},
|
|
1211
1518
|
"discovery" : {
|
|
1212
1519
|
"endpoints" : {
|
|
1520
|
+
"ap-southeast-2" : { },
|
|
1213
1521
|
"eu-central-1" : { },
|
|
1214
1522
|
"us-west-2" : { }
|
|
1215
1523
|
}
|
|
1216
1524
|
},
|
|
1217
1525
|
"dms" : {
|
|
1218
1526
|
"endpoints" : {
|
|
1527
|
+
"af-south-1" : { },
|
|
1219
1528
|
"ap-east-1" : { },
|
|
1220
1529
|
"ap-northeast-1" : { },
|
|
1221
1530
|
"ap-northeast-2" : { },
|
|
@@ -1223,8 +1532,15 @@
|
|
|
1223
1532
|
"ap-southeast-1" : { },
|
|
1224
1533
|
"ap-southeast-2" : { },
|
|
1225
1534
|
"ca-central-1" : { },
|
|
1535
|
+
"dms-fips" : {
|
|
1536
|
+
"credentialScope" : {
|
|
1537
|
+
"region" : "us-west-1"
|
|
1538
|
+
},
|
|
1539
|
+
"hostname" : "dms-fips.us-west-1.amazonaws.com"
|
|
1540
|
+
},
|
|
1226
1541
|
"eu-central-1" : { },
|
|
1227
1542
|
"eu-north-1" : { },
|
|
1543
|
+
"eu-south-1" : { },
|
|
1228
1544
|
"eu-west-1" : { },
|
|
1229
1545
|
"eu-west-2" : { },
|
|
1230
1546
|
"eu-west-3" : { },
|
|
@@ -1332,22 +1648,54 @@
|
|
|
1332
1648
|
"eu-west-1" : { },
|
|
1333
1649
|
"eu-west-2" : { },
|
|
1334
1650
|
"eu-west-3" : { },
|
|
1335
|
-
"
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
"
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1651
|
+
"fips-ca-central-1" : {
|
|
1652
|
+
"credentialScope" : {
|
|
1653
|
+
"region" : "ca-central-1"
|
|
1654
|
+
},
|
|
1655
|
+
"hostname" : "ds-fips.ca-central-1.amazonaws.com"
|
|
1656
|
+
},
|
|
1657
|
+
"fips-us-east-1" : {
|
|
1658
|
+
"credentialScope" : {
|
|
1659
|
+
"region" : "us-east-1"
|
|
1660
|
+
},
|
|
1661
|
+
"hostname" : "ds-fips.us-east-1.amazonaws.com"
|
|
1662
|
+
},
|
|
1663
|
+
"fips-us-east-2" : {
|
|
1664
|
+
"credentialScope" : {
|
|
1665
|
+
"region" : "us-east-2"
|
|
1666
|
+
},
|
|
1667
|
+
"hostname" : "ds-fips.us-east-2.amazonaws.com"
|
|
1668
|
+
},
|
|
1669
|
+
"fips-us-west-1" : {
|
|
1670
|
+
"credentialScope" : {
|
|
1671
|
+
"region" : "us-west-1"
|
|
1672
|
+
},
|
|
1673
|
+
"hostname" : "ds-fips.us-west-1.amazonaws.com"
|
|
1674
|
+
},
|
|
1675
|
+
"fips-us-west-2" : {
|
|
1676
|
+
"credentialScope" : {
|
|
1677
|
+
"region" : "us-west-2"
|
|
1678
|
+
},
|
|
1679
|
+
"hostname" : "ds-fips.us-west-2.amazonaws.com"
|
|
1680
|
+
},
|
|
1681
|
+
"me-south-1" : { },
|
|
1682
|
+
"sa-east-1" : { },
|
|
1683
|
+
"us-east-1" : { },
|
|
1684
|
+
"us-east-2" : { },
|
|
1685
|
+
"us-west-1" : { },
|
|
1686
|
+
"us-west-2" : { }
|
|
1687
|
+
}
|
|
1688
|
+
},
|
|
1689
|
+
"dynamodb" : {
|
|
1690
|
+
"defaults" : {
|
|
1691
|
+
"protocols" : [ "http", "https" ]
|
|
1692
|
+
},
|
|
1693
|
+
"endpoints" : {
|
|
1694
|
+
"af-south-1" : { },
|
|
1695
|
+
"ap-east-1" : { },
|
|
1696
|
+
"ap-northeast-1" : { },
|
|
1697
|
+
"ap-northeast-2" : { },
|
|
1698
|
+
"ap-south-1" : { },
|
|
1351
1699
|
"ap-southeast-1" : { },
|
|
1352
1700
|
"ap-southeast-2" : { },
|
|
1353
1701
|
"ca-central-1" : { },
|
|
@@ -1359,6 +1707,7 @@
|
|
|
1359
1707
|
},
|
|
1360
1708
|
"eu-central-1" : { },
|
|
1361
1709
|
"eu-north-1" : { },
|
|
1710
|
+
"eu-south-1" : { },
|
|
1362
1711
|
"eu-west-1" : { },
|
|
1363
1712
|
"eu-west-2" : { },
|
|
1364
1713
|
"eu-west-3" : { },
|
|
@@ -1406,6 +1755,7 @@
|
|
|
1406
1755
|
"protocols" : [ "http", "https" ]
|
|
1407
1756
|
},
|
|
1408
1757
|
"endpoints" : {
|
|
1758
|
+
"af-south-1" : { },
|
|
1409
1759
|
"ap-east-1" : { },
|
|
1410
1760
|
"ap-northeast-1" : { },
|
|
1411
1761
|
"ap-northeast-2" : { },
|
|
@@ -1415,9 +1765,40 @@
|
|
|
1415
1765
|
"ca-central-1" : { },
|
|
1416
1766
|
"eu-central-1" : { },
|
|
1417
1767
|
"eu-north-1" : { },
|
|
1768
|
+
"eu-south-1" : { },
|
|
1418
1769
|
"eu-west-1" : { },
|
|
1419
1770
|
"eu-west-2" : { },
|
|
1420
1771
|
"eu-west-3" : { },
|
|
1772
|
+
"fips-ca-central-1" : {
|
|
1773
|
+
"credentialScope" : {
|
|
1774
|
+
"region" : "ca-central-1"
|
|
1775
|
+
},
|
|
1776
|
+
"hostname" : "ec2-fips.ca-central-1.amazonaws.com"
|
|
1777
|
+
},
|
|
1778
|
+
"fips-us-east-1" : {
|
|
1779
|
+
"credentialScope" : {
|
|
1780
|
+
"region" : "us-east-1"
|
|
1781
|
+
},
|
|
1782
|
+
"hostname" : "ec2-fips.us-east-1.amazonaws.com"
|
|
1783
|
+
},
|
|
1784
|
+
"fips-us-east-2" : {
|
|
1785
|
+
"credentialScope" : {
|
|
1786
|
+
"region" : "us-east-2"
|
|
1787
|
+
},
|
|
1788
|
+
"hostname" : "ec2-fips.us-east-2.amazonaws.com"
|
|
1789
|
+
},
|
|
1790
|
+
"fips-us-west-1" : {
|
|
1791
|
+
"credentialScope" : {
|
|
1792
|
+
"region" : "us-west-1"
|
|
1793
|
+
},
|
|
1794
|
+
"hostname" : "ec2-fips.us-west-1.amazonaws.com"
|
|
1795
|
+
},
|
|
1796
|
+
"fips-us-west-2" : {
|
|
1797
|
+
"credentialScope" : {
|
|
1798
|
+
"region" : "us-west-2"
|
|
1799
|
+
},
|
|
1800
|
+
"hostname" : "ec2-fips.us-west-2.amazonaws.com"
|
|
1801
|
+
},
|
|
1421
1802
|
"me-south-1" : { },
|
|
1422
1803
|
"sa-east-1" : { },
|
|
1423
1804
|
"us-east-1" : { },
|
|
@@ -1428,6 +1809,7 @@
|
|
|
1428
1809
|
},
|
|
1429
1810
|
"ecs" : {
|
|
1430
1811
|
"endpoints" : {
|
|
1812
|
+
"af-south-1" : { },
|
|
1431
1813
|
"ap-east-1" : { },
|
|
1432
1814
|
"ap-northeast-1" : { },
|
|
1433
1815
|
"ap-northeast-2" : { },
|
|
@@ -1437,9 +1819,34 @@
|
|
|
1437
1819
|
"ca-central-1" : { },
|
|
1438
1820
|
"eu-central-1" : { },
|
|
1439
1821
|
"eu-north-1" : { },
|
|
1822
|
+
"eu-south-1" : { },
|
|
1440
1823
|
"eu-west-1" : { },
|
|
1441
1824
|
"eu-west-2" : { },
|
|
1442
1825
|
"eu-west-3" : { },
|
|
1826
|
+
"fips-us-east-1" : {
|
|
1827
|
+
"credentialScope" : {
|
|
1828
|
+
"region" : "us-east-1"
|
|
1829
|
+
},
|
|
1830
|
+
"hostname" : "ecs-fips.us-east-1.amazonaws.com"
|
|
1831
|
+
},
|
|
1832
|
+
"fips-us-east-2" : {
|
|
1833
|
+
"credentialScope" : {
|
|
1834
|
+
"region" : "us-east-2"
|
|
1835
|
+
},
|
|
1836
|
+
"hostname" : "ecs-fips.us-east-2.amazonaws.com"
|
|
1837
|
+
},
|
|
1838
|
+
"fips-us-west-1" : {
|
|
1839
|
+
"credentialScope" : {
|
|
1840
|
+
"region" : "us-west-1"
|
|
1841
|
+
},
|
|
1842
|
+
"hostname" : "ecs-fips.us-west-1.amazonaws.com"
|
|
1843
|
+
},
|
|
1844
|
+
"fips-us-west-2" : {
|
|
1845
|
+
"credentialScope" : {
|
|
1846
|
+
"region" : "us-west-2"
|
|
1847
|
+
},
|
|
1848
|
+
"hostname" : "ecs-fips.us-west-2.amazonaws.com"
|
|
1849
|
+
},
|
|
1443
1850
|
"me-south-1" : { },
|
|
1444
1851
|
"sa-east-1" : { },
|
|
1445
1852
|
"us-east-1" : { },
|
|
@@ -1450,6 +1857,7 @@
|
|
|
1450
1857
|
},
|
|
1451
1858
|
"elasticache" : {
|
|
1452
1859
|
"endpoints" : {
|
|
1860
|
+
"af-south-1" : { },
|
|
1453
1861
|
"ap-east-1" : { },
|
|
1454
1862
|
"ap-northeast-1" : { },
|
|
1455
1863
|
"ap-northeast-2" : { },
|
|
@@ -1459,6 +1867,7 @@
|
|
|
1459
1867
|
"ca-central-1" : { },
|
|
1460
1868
|
"eu-central-1" : { },
|
|
1461
1869
|
"eu-north-1" : { },
|
|
1870
|
+
"eu-south-1" : { },
|
|
1462
1871
|
"eu-west-1" : { },
|
|
1463
1872
|
"eu-west-2" : { },
|
|
1464
1873
|
"eu-west-3" : { },
|
|
@@ -1478,6 +1887,7 @@
|
|
|
1478
1887
|
},
|
|
1479
1888
|
"elasticbeanstalk" : {
|
|
1480
1889
|
"endpoints" : {
|
|
1890
|
+
"af-south-1" : { },
|
|
1481
1891
|
"ap-east-1" : { },
|
|
1482
1892
|
"ap-northeast-1" : { },
|
|
1483
1893
|
"ap-northeast-2" : { },
|
|
@@ -1487,9 +1897,34 @@
|
|
|
1487
1897
|
"ca-central-1" : { },
|
|
1488
1898
|
"eu-central-1" : { },
|
|
1489
1899
|
"eu-north-1" : { },
|
|
1900
|
+
"eu-south-1" : { },
|
|
1490
1901
|
"eu-west-1" : { },
|
|
1491
1902
|
"eu-west-2" : { },
|
|
1492
1903
|
"eu-west-3" : { },
|
|
1904
|
+
"fips-us-east-1" : {
|
|
1905
|
+
"credentialScope" : {
|
|
1906
|
+
"region" : "us-east-1"
|
|
1907
|
+
},
|
|
1908
|
+
"hostname" : "elasticbeanstalk-fips.us-east-1.amazonaws.com"
|
|
1909
|
+
},
|
|
1910
|
+
"fips-us-east-2" : {
|
|
1911
|
+
"credentialScope" : {
|
|
1912
|
+
"region" : "us-east-2"
|
|
1913
|
+
},
|
|
1914
|
+
"hostname" : "elasticbeanstalk-fips.us-east-2.amazonaws.com"
|
|
1915
|
+
},
|
|
1916
|
+
"fips-us-west-1" : {
|
|
1917
|
+
"credentialScope" : {
|
|
1918
|
+
"region" : "us-west-1"
|
|
1919
|
+
},
|
|
1920
|
+
"hostname" : "elasticbeanstalk-fips.us-west-1.amazonaws.com"
|
|
1921
|
+
},
|
|
1922
|
+
"fips-us-west-2" : {
|
|
1923
|
+
"credentialScope" : {
|
|
1924
|
+
"region" : "us-west-2"
|
|
1925
|
+
},
|
|
1926
|
+
"hostname" : "elasticbeanstalk-fips.us-west-2.amazonaws.com"
|
|
1927
|
+
},
|
|
1493
1928
|
"me-south-1" : { },
|
|
1494
1929
|
"sa-east-1" : { },
|
|
1495
1930
|
"us-east-1" : { },
|
|
@@ -1512,6 +1947,114 @@
|
|
|
1512
1947
|
"eu-west-1" : { },
|
|
1513
1948
|
"eu-west-2" : { },
|
|
1514
1949
|
"eu-west-3" : { },
|
|
1950
|
+
"fips-ap-east-1" : {
|
|
1951
|
+
"credentialScope" : {
|
|
1952
|
+
"region" : "ap-east-1"
|
|
1953
|
+
},
|
|
1954
|
+
"hostname" : "elasticfilesystem-fips.ap-east-1.amazonaws.com"
|
|
1955
|
+
},
|
|
1956
|
+
"fips-ap-northeast-1" : {
|
|
1957
|
+
"credentialScope" : {
|
|
1958
|
+
"region" : "ap-northeast-1"
|
|
1959
|
+
},
|
|
1960
|
+
"hostname" : "elasticfilesystem-fips.ap-northeast-1.amazonaws.com"
|
|
1961
|
+
},
|
|
1962
|
+
"fips-ap-northeast-2" : {
|
|
1963
|
+
"credentialScope" : {
|
|
1964
|
+
"region" : "ap-northeast-2"
|
|
1965
|
+
},
|
|
1966
|
+
"hostname" : "elasticfilesystem-fips.ap-northeast-2.amazonaws.com"
|
|
1967
|
+
},
|
|
1968
|
+
"fips-ap-south-1" : {
|
|
1969
|
+
"credentialScope" : {
|
|
1970
|
+
"region" : "ap-south-1"
|
|
1971
|
+
},
|
|
1972
|
+
"hostname" : "elasticfilesystem-fips.ap-south-1.amazonaws.com"
|
|
1973
|
+
},
|
|
1974
|
+
"fips-ap-southeast-1" : {
|
|
1975
|
+
"credentialScope" : {
|
|
1976
|
+
"region" : "ap-southeast-1"
|
|
1977
|
+
},
|
|
1978
|
+
"hostname" : "elasticfilesystem-fips.ap-southeast-1.amazonaws.com"
|
|
1979
|
+
},
|
|
1980
|
+
"fips-ap-southeast-2" : {
|
|
1981
|
+
"credentialScope" : {
|
|
1982
|
+
"region" : "ap-southeast-2"
|
|
1983
|
+
},
|
|
1984
|
+
"hostname" : "elasticfilesystem-fips.ap-southeast-2.amazonaws.com"
|
|
1985
|
+
},
|
|
1986
|
+
"fips-ca-central-1" : {
|
|
1987
|
+
"credentialScope" : {
|
|
1988
|
+
"region" : "ca-central-1"
|
|
1989
|
+
},
|
|
1990
|
+
"hostname" : "elasticfilesystem-fips.ca-central-1.amazonaws.com"
|
|
1991
|
+
},
|
|
1992
|
+
"fips-eu-central-1" : {
|
|
1993
|
+
"credentialScope" : {
|
|
1994
|
+
"region" : "eu-central-1"
|
|
1995
|
+
},
|
|
1996
|
+
"hostname" : "elasticfilesystem-fips.eu-central-1.amazonaws.com"
|
|
1997
|
+
},
|
|
1998
|
+
"fips-eu-north-1" : {
|
|
1999
|
+
"credentialScope" : {
|
|
2000
|
+
"region" : "eu-north-1"
|
|
2001
|
+
},
|
|
2002
|
+
"hostname" : "elasticfilesystem-fips.eu-north-1.amazonaws.com"
|
|
2003
|
+
},
|
|
2004
|
+
"fips-eu-west-1" : {
|
|
2005
|
+
"credentialScope" : {
|
|
2006
|
+
"region" : "eu-west-1"
|
|
2007
|
+
},
|
|
2008
|
+
"hostname" : "elasticfilesystem-fips.eu-west-1.amazonaws.com"
|
|
2009
|
+
},
|
|
2010
|
+
"fips-eu-west-2" : {
|
|
2011
|
+
"credentialScope" : {
|
|
2012
|
+
"region" : "eu-west-2"
|
|
2013
|
+
},
|
|
2014
|
+
"hostname" : "elasticfilesystem-fips.eu-west-2.amazonaws.com"
|
|
2015
|
+
},
|
|
2016
|
+
"fips-eu-west-3" : {
|
|
2017
|
+
"credentialScope" : {
|
|
2018
|
+
"region" : "eu-west-3"
|
|
2019
|
+
},
|
|
2020
|
+
"hostname" : "elasticfilesystem-fips.eu-west-3.amazonaws.com"
|
|
2021
|
+
},
|
|
2022
|
+
"fips-me-south-1" : {
|
|
2023
|
+
"credentialScope" : {
|
|
2024
|
+
"region" : "me-south-1"
|
|
2025
|
+
},
|
|
2026
|
+
"hostname" : "elasticfilesystem-fips.me-south-1.amazonaws.com"
|
|
2027
|
+
},
|
|
2028
|
+
"fips-sa-east-1" : {
|
|
2029
|
+
"credentialScope" : {
|
|
2030
|
+
"region" : "sa-east-1"
|
|
2031
|
+
},
|
|
2032
|
+
"hostname" : "elasticfilesystem-fips.sa-east-1.amazonaws.com"
|
|
2033
|
+
},
|
|
2034
|
+
"fips-us-east-1" : {
|
|
2035
|
+
"credentialScope" : {
|
|
2036
|
+
"region" : "us-east-1"
|
|
2037
|
+
},
|
|
2038
|
+
"hostname" : "elasticfilesystem-fips.us-east-1.amazonaws.com"
|
|
2039
|
+
},
|
|
2040
|
+
"fips-us-east-2" : {
|
|
2041
|
+
"credentialScope" : {
|
|
2042
|
+
"region" : "us-east-2"
|
|
2043
|
+
},
|
|
2044
|
+
"hostname" : "elasticfilesystem-fips.us-east-2.amazonaws.com"
|
|
2045
|
+
},
|
|
2046
|
+
"fips-us-west-1" : {
|
|
2047
|
+
"credentialScope" : {
|
|
2048
|
+
"region" : "us-west-1"
|
|
2049
|
+
},
|
|
2050
|
+
"hostname" : "elasticfilesystem-fips.us-west-1.amazonaws.com"
|
|
2051
|
+
},
|
|
2052
|
+
"fips-us-west-2" : {
|
|
2053
|
+
"credentialScope" : {
|
|
2054
|
+
"region" : "us-west-2"
|
|
2055
|
+
},
|
|
2056
|
+
"hostname" : "elasticfilesystem-fips.us-west-2.amazonaws.com"
|
|
2057
|
+
},
|
|
1515
2058
|
"me-south-1" : { },
|
|
1516
2059
|
"sa-east-1" : { },
|
|
1517
2060
|
"us-east-1" : { },
|
|
@@ -1525,6 +2068,7 @@
|
|
|
1525
2068
|
"protocols" : [ "https" ]
|
|
1526
2069
|
},
|
|
1527
2070
|
"endpoints" : {
|
|
2071
|
+
"af-south-1" : { },
|
|
1528
2072
|
"ap-east-1" : { },
|
|
1529
2073
|
"ap-northeast-1" : { },
|
|
1530
2074
|
"ap-northeast-2" : { },
|
|
@@ -1534,9 +2078,34 @@
|
|
|
1534
2078
|
"ca-central-1" : { },
|
|
1535
2079
|
"eu-central-1" : { },
|
|
1536
2080
|
"eu-north-1" : { },
|
|
2081
|
+
"eu-south-1" : { },
|
|
1537
2082
|
"eu-west-1" : { },
|
|
1538
2083
|
"eu-west-2" : { },
|
|
1539
2084
|
"eu-west-3" : { },
|
|
2085
|
+
"fips-us-east-1" : {
|
|
2086
|
+
"credentialScope" : {
|
|
2087
|
+
"region" : "us-east-1"
|
|
2088
|
+
},
|
|
2089
|
+
"hostname" : "elasticloadbalancing-fips.us-east-1.amazonaws.com"
|
|
2090
|
+
},
|
|
2091
|
+
"fips-us-east-2" : {
|
|
2092
|
+
"credentialScope" : {
|
|
2093
|
+
"region" : "us-east-2"
|
|
2094
|
+
},
|
|
2095
|
+
"hostname" : "elasticloadbalancing-fips.us-east-2.amazonaws.com"
|
|
2096
|
+
},
|
|
2097
|
+
"fips-us-west-1" : {
|
|
2098
|
+
"credentialScope" : {
|
|
2099
|
+
"region" : "us-west-1"
|
|
2100
|
+
},
|
|
2101
|
+
"hostname" : "elasticloadbalancing-fips.us-west-1.amazonaws.com"
|
|
2102
|
+
},
|
|
2103
|
+
"fips-us-west-2" : {
|
|
2104
|
+
"credentialScope" : {
|
|
2105
|
+
"region" : "us-west-2"
|
|
2106
|
+
},
|
|
2107
|
+
"hostname" : "elasticloadbalancing-fips.us-west-2.amazonaws.com"
|
|
2108
|
+
},
|
|
1540
2109
|
"me-south-1" : { },
|
|
1541
2110
|
"sa-east-1" : { },
|
|
1542
2111
|
"us-east-1" : { },
|
|
@@ -1551,6 +2120,7 @@
|
|
|
1551
2120
|
"sslCommonName" : "{region}.{service}.{dnsSuffix}"
|
|
1552
2121
|
},
|
|
1553
2122
|
"endpoints" : {
|
|
2123
|
+
"af-south-1" : { },
|
|
1554
2124
|
"ap-east-1" : { },
|
|
1555
2125
|
"ap-northeast-1" : { },
|
|
1556
2126
|
"ap-northeast-2" : { },
|
|
@@ -1562,9 +2132,40 @@
|
|
|
1562
2132
|
"sslCommonName" : "{service}.{region}.{dnsSuffix}"
|
|
1563
2133
|
},
|
|
1564
2134
|
"eu-north-1" : { },
|
|
2135
|
+
"eu-south-1" : { },
|
|
1565
2136
|
"eu-west-1" : { },
|
|
1566
2137
|
"eu-west-2" : { },
|
|
1567
2138
|
"eu-west-3" : { },
|
|
2139
|
+
"fips-ca-central-1" : {
|
|
2140
|
+
"credentialScope" : {
|
|
2141
|
+
"region" : "ca-central-1"
|
|
2142
|
+
},
|
|
2143
|
+
"hostname" : "elasticmapreduce-fips.ca-central-1.amazonaws.com"
|
|
2144
|
+
},
|
|
2145
|
+
"fips-us-east-1" : {
|
|
2146
|
+
"credentialScope" : {
|
|
2147
|
+
"region" : "us-east-1"
|
|
2148
|
+
},
|
|
2149
|
+
"hostname" : "elasticmapreduce-fips.us-east-1.amazonaws.com"
|
|
2150
|
+
},
|
|
2151
|
+
"fips-us-east-2" : {
|
|
2152
|
+
"credentialScope" : {
|
|
2153
|
+
"region" : "us-east-2"
|
|
2154
|
+
},
|
|
2155
|
+
"hostname" : "elasticmapreduce-fips.us-east-2.amazonaws.com"
|
|
2156
|
+
},
|
|
2157
|
+
"fips-us-west-1" : {
|
|
2158
|
+
"credentialScope" : {
|
|
2159
|
+
"region" : "us-west-1"
|
|
2160
|
+
},
|
|
2161
|
+
"hostname" : "elasticmapreduce-fips.us-west-1.amazonaws.com"
|
|
2162
|
+
},
|
|
2163
|
+
"fips-us-west-2" : {
|
|
2164
|
+
"credentialScope" : {
|
|
2165
|
+
"region" : "us-west-2"
|
|
2166
|
+
},
|
|
2167
|
+
"hostname" : "elasticmapreduce-fips.us-west-2.amazonaws.com"
|
|
2168
|
+
},
|
|
1568
2169
|
"me-south-1" : { },
|
|
1569
2170
|
"sa-east-1" : { },
|
|
1570
2171
|
"us-east-1" : {
|
|
@@ -1609,6 +2210,7 @@
|
|
|
1609
2210
|
},
|
|
1610
2211
|
"es" : {
|
|
1611
2212
|
"endpoints" : {
|
|
2213
|
+
"af-south-1" : { },
|
|
1612
2214
|
"ap-east-1" : { },
|
|
1613
2215
|
"ap-northeast-1" : { },
|
|
1614
2216
|
"ap-northeast-2" : { },
|
|
@@ -1618,6 +2220,7 @@
|
|
|
1618
2220
|
"ca-central-1" : { },
|
|
1619
2221
|
"eu-central-1" : { },
|
|
1620
2222
|
"eu-north-1" : { },
|
|
2223
|
+
"eu-south-1" : { },
|
|
1621
2224
|
"eu-west-1" : { },
|
|
1622
2225
|
"eu-west-2" : { },
|
|
1623
2226
|
"eu-west-3" : { },
|
|
@@ -1637,6 +2240,7 @@
|
|
|
1637
2240
|
},
|
|
1638
2241
|
"events" : {
|
|
1639
2242
|
"endpoints" : {
|
|
2243
|
+
"af-south-1" : { },
|
|
1640
2244
|
"ap-east-1" : { },
|
|
1641
2245
|
"ap-northeast-1" : { },
|
|
1642
2246
|
"ap-northeast-2" : { },
|
|
@@ -1646,9 +2250,34 @@
|
|
|
1646
2250
|
"ca-central-1" : { },
|
|
1647
2251
|
"eu-central-1" : { },
|
|
1648
2252
|
"eu-north-1" : { },
|
|
2253
|
+
"eu-south-1" : { },
|
|
1649
2254
|
"eu-west-1" : { },
|
|
1650
2255
|
"eu-west-2" : { },
|
|
1651
2256
|
"eu-west-3" : { },
|
|
2257
|
+
"fips-us-east-1" : {
|
|
2258
|
+
"credentialScope" : {
|
|
2259
|
+
"region" : "us-east-1"
|
|
2260
|
+
},
|
|
2261
|
+
"hostname" : "events-fips.us-east-1.amazonaws.com"
|
|
2262
|
+
},
|
|
2263
|
+
"fips-us-east-2" : {
|
|
2264
|
+
"credentialScope" : {
|
|
2265
|
+
"region" : "us-east-2"
|
|
2266
|
+
},
|
|
2267
|
+
"hostname" : "events-fips.us-east-2.amazonaws.com"
|
|
2268
|
+
},
|
|
2269
|
+
"fips-us-west-1" : {
|
|
2270
|
+
"credentialScope" : {
|
|
2271
|
+
"region" : "us-west-1"
|
|
2272
|
+
},
|
|
2273
|
+
"hostname" : "events-fips.us-west-1.amazonaws.com"
|
|
2274
|
+
},
|
|
2275
|
+
"fips-us-west-2" : {
|
|
2276
|
+
"credentialScope" : {
|
|
2277
|
+
"region" : "us-west-2"
|
|
2278
|
+
},
|
|
2279
|
+
"hostname" : "events-fips.us-west-2.amazonaws.com"
|
|
2280
|
+
},
|
|
1652
2281
|
"me-south-1" : { },
|
|
1653
2282
|
"sa-east-1" : { },
|
|
1654
2283
|
"us-east-1" : { },
|
|
@@ -1671,6 +2300,30 @@
|
|
|
1671
2300
|
"eu-west-1" : { },
|
|
1672
2301
|
"eu-west-2" : { },
|
|
1673
2302
|
"eu-west-3" : { },
|
|
2303
|
+
"fips-us-east-1" : {
|
|
2304
|
+
"credentialScope" : {
|
|
2305
|
+
"region" : "us-east-1"
|
|
2306
|
+
},
|
|
2307
|
+
"hostname" : "firehose-fips.us-east-1.amazonaws.com"
|
|
2308
|
+
},
|
|
2309
|
+
"fips-us-east-2" : {
|
|
2310
|
+
"credentialScope" : {
|
|
2311
|
+
"region" : "us-east-2"
|
|
2312
|
+
},
|
|
2313
|
+
"hostname" : "firehose-fips.us-east-2.amazonaws.com"
|
|
2314
|
+
},
|
|
2315
|
+
"fips-us-west-1" : {
|
|
2316
|
+
"credentialScope" : {
|
|
2317
|
+
"region" : "us-west-1"
|
|
2318
|
+
},
|
|
2319
|
+
"hostname" : "firehose-fips.us-west-1.amazonaws.com"
|
|
2320
|
+
},
|
|
2321
|
+
"fips-us-west-2" : {
|
|
2322
|
+
"credentialScope" : {
|
|
2323
|
+
"region" : "us-west-2"
|
|
2324
|
+
},
|
|
2325
|
+
"hostname" : "firehose-fips.us-west-2.amazonaws.com"
|
|
2326
|
+
},
|
|
1674
2327
|
"me-south-1" : { },
|
|
1675
2328
|
"sa-east-1" : { },
|
|
1676
2329
|
"us-east-1" : { },
|
|
@@ -1695,6 +2348,96 @@
|
|
|
1695
2348
|
"eu-west-1" : { },
|
|
1696
2349
|
"eu-west-2" : { },
|
|
1697
2350
|
"eu-west-3" : { },
|
|
2351
|
+
"fips-ap-northeast-1" : {
|
|
2352
|
+
"credentialScope" : {
|
|
2353
|
+
"region" : "ap-northeast-1"
|
|
2354
|
+
},
|
|
2355
|
+
"hostname" : "fms-fips.ap-northeast-1.amazonaws.com"
|
|
2356
|
+
},
|
|
2357
|
+
"fips-ap-northeast-2" : {
|
|
2358
|
+
"credentialScope" : {
|
|
2359
|
+
"region" : "ap-northeast-2"
|
|
2360
|
+
},
|
|
2361
|
+
"hostname" : "fms-fips.ap-northeast-2.amazonaws.com"
|
|
2362
|
+
},
|
|
2363
|
+
"fips-ap-south-1" : {
|
|
2364
|
+
"credentialScope" : {
|
|
2365
|
+
"region" : "ap-south-1"
|
|
2366
|
+
},
|
|
2367
|
+
"hostname" : "fms-fips.ap-south-1.amazonaws.com"
|
|
2368
|
+
},
|
|
2369
|
+
"fips-ap-southeast-1" : {
|
|
2370
|
+
"credentialScope" : {
|
|
2371
|
+
"region" : "ap-southeast-1"
|
|
2372
|
+
},
|
|
2373
|
+
"hostname" : "fms-fips.ap-southeast-1.amazonaws.com"
|
|
2374
|
+
},
|
|
2375
|
+
"fips-ap-southeast-2" : {
|
|
2376
|
+
"credentialScope" : {
|
|
2377
|
+
"region" : "ap-southeast-2"
|
|
2378
|
+
},
|
|
2379
|
+
"hostname" : "fms-fips.ap-southeast-2.amazonaws.com"
|
|
2380
|
+
},
|
|
2381
|
+
"fips-ca-central-1" : {
|
|
2382
|
+
"credentialScope" : {
|
|
2383
|
+
"region" : "ca-central-1"
|
|
2384
|
+
},
|
|
2385
|
+
"hostname" : "fms-fips.ca-central-1.amazonaws.com"
|
|
2386
|
+
},
|
|
2387
|
+
"fips-eu-central-1" : {
|
|
2388
|
+
"credentialScope" : {
|
|
2389
|
+
"region" : "eu-central-1"
|
|
2390
|
+
},
|
|
2391
|
+
"hostname" : "fms-fips.eu-central-1.amazonaws.com"
|
|
2392
|
+
},
|
|
2393
|
+
"fips-eu-west-1" : {
|
|
2394
|
+
"credentialScope" : {
|
|
2395
|
+
"region" : "eu-west-1"
|
|
2396
|
+
},
|
|
2397
|
+
"hostname" : "fms-fips.eu-west-1.amazonaws.com"
|
|
2398
|
+
},
|
|
2399
|
+
"fips-eu-west-2" : {
|
|
2400
|
+
"credentialScope" : {
|
|
2401
|
+
"region" : "eu-west-2"
|
|
2402
|
+
},
|
|
2403
|
+
"hostname" : "fms-fips.eu-west-2.amazonaws.com"
|
|
2404
|
+
},
|
|
2405
|
+
"fips-eu-west-3" : {
|
|
2406
|
+
"credentialScope" : {
|
|
2407
|
+
"region" : "eu-west-3"
|
|
2408
|
+
},
|
|
2409
|
+
"hostname" : "fms-fips.eu-west-3.amazonaws.com"
|
|
2410
|
+
},
|
|
2411
|
+
"fips-sa-east-1" : {
|
|
2412
|
+
"credentialScope" : {
|
|
2413
|
+
"region" : "sa-east-1"
|
|
2414
|
+
},
|
|
2415
|
+
"hostname" : "fms-fips.sa-east-1.amazonaws.com"
|
|
2416
|
+
},
|
|
2417
|
+
"fips-us-east-1" : {
|
|
2418
|
+
"credentialScope" : {
|
|
2419
|
+
"region" : "us-east-1"
|
|
2420
|
+
},
|
|
2421
|
+
"hostname" : "fms-fips.us-east-1.amazonaws.com"
|
|
2422
|
+
},
|
|
2423
|
+
"fips-us-east-2" : {
|
|
2424
|
+
"credentialScope" : {
|
|
2425
|
+
"region" : "us-east-2"
|
|
2426
|
+
},
|
|
2427
|
+
"hostname" : "fms-fips.us-east-2.amazonaws.com"
|
|
2428
|
+
},
|
|
2429
|
+
"fips-us-west-1" : {
|
|
2430
|
+
"credentialScope" : {
|
|
2431
|
+
"region" : "us-west-1"
|
|
2432
|
+
},
|
|
2433
|
+
"hostname" : "fms-fips.us-west-1.amazonaws.com"
|
|
2434
|
+
},
|
|
2435
|
+
"fips-us-west-2" : {
|
|
2436
|
+
"credentialScope" : {
|
|
2437
|
+
"region" : "us-west-2"
|
|
2438
|
+
},
|
|
2439
|
+
"hostname" : "fms-fips.us-west-2.amazonaws.com"
|
|
2440
|
+
},
|
|
1698
2441
|
"sa-east-1" : { },
|
|
1699
2442
|
"us-east-1" : { },
|
|
1700
2443
|
"us-east-2" : { },
|
|
@@ -1706,7 +2449,10 @@
|
|
|
1706
2449
|
"endpoints" : {
|
|
1707
2450
|
"ap-northeast-1" : { },
|
|
1708
2451
|
"ap-northeast-2" : { },
|
|
2452
|
+
"ap-south-1" : { },
|
|
1709
2453
|
"ap-southeast-1" : { },
|
|
2454
|
+
"ap-southeast-2" : { },
|
|
2455
|
+
"eu-central-1" : { },
|
|
1710
2456
|
"eu-west-1" : { },
|
|
1711
2457
|
"us-east-1" : { },
|
|
1712
2458
|
"us-east-2" : { },
|
|
@@ -1716,7 +2462,11 @@
|
|
|
1716
2462
|
"forecastquery" : {
|
|
1717
2463
|
"endpoints" : {
|
|
1718
2464
|
"ap-northeast-1" : { },
|
|
2465
|
+
"ap-northeast-2" : { },
|
|
2466
|
+
"ap-south-1" : { },
|
|
1719
2467
|
"ap-southeast-1" : { },
|
|
2468
|
+
"ap-southeast-2" : { },
|
|
2469
|
+
"eu-central-1" : { },
|
|
1720
2470
|
"eu-west-1" : { },
|
|
1721
2471
|
"us-east-1" : { },
|
|
1722
2472
|
"us-east-2" : { },
|
|
@@ -1725,7 +2475,9 @@
|
|
|
1725
2475
|
},
|
|
1726
2476
|
"fsx" : {
|
|
1727
2477
|
"endpoints" : {
|
|
2478
|
+
"ap-east-1" : { },
|
|
1728
2479
|
"ap-northeast-1" : { },
|
|
2480
|
+
"ap-northeast-2" : { },
|
|
1729
2481
|
"ap-southeast-1" : { },
|
|
1730
2482
|
"ap-southeast-2" : { },
|
|
1731
2483
|
"eu-central-1" : { },
|
|
@@ -1761,6 +2513,7 @@
|
|
|
1761
2513
|
"protocols" : [ "http", "https" ]
|
|
1762
2514
|
},
|
|
1763
2515
|
"endpoints" : {
|
|
2516
|
+
"af-south-1" : { },
|
|
1764
2517
|
"ap-east-1" : { },
|
|
1765
2518
|
"ap-northeast-1" : { },
|
|
1766
2519
|
"ap-northeast-2" : { },
|
|
@@ -1770,9 +2523,40 @@
|
|
|
1770
2523
|
"ca-central-1" : { },
|
|
1771
2524
|
"eu-central-1" : { },
|
|
1772
2525
|
"eu-north-1" : { },
|
|
2526
|
+
"eu-south-1" : { },
|
|
1773
2527
|
"eu-west-1" : { },
|
|
1774
2528
|
"eu-west-2" : { },
|
|
1775
2529
|
"eu-west-3" : { },
|
|
2530
|
+
"fips-ca-central-1" : {
|
|
2531
|
+
"credentialScope" : {
|
|
2532
|
+
"region" : "ca-central-1"
|
|
2533
|
+
},
|
|
2534
|
+
"hostname" : "glacier-fips.ca-central-1.amazonaws.com"
|
|
2535
|
+
},
|
|
2536
|
+
"fips-us-east-1" : {
|
|
2537
|
+
"credentialScope" : {
|
|
2538
|
+
"region" : "us-east-1"
|
|
2539
|
+
},
|
|
2540
|
+
"hostname" : "glacier-fips.us-east-1.amazonaws.com"
|
|
2541
|
+
},
|
|
2542
|
+
"fips-us-east-2" : {
|
|
2543
|
+
"credentialScope" : {
|
|
2544
|
+
"region" : "us-east-2"
|
|
2545
|
+
},
|
|
2546
|
+
"hostname" : "glacier-fips.us-east-2.amazonaws.com"
|
|
2547
|
+
},
|
|
2548
|
+
"fips-us-west-1" : {
|
|
2549
|
+
"credentialScope" : {
|
|
2550
|
+
"region" : "us-west-1"
|
|
2551
|
+
},
|
|
2552
|
+
"hostname" : "glacier-fips.us-west-1.amazonaws.com"
|
|
2553
|
+
},
|
|
2554
|
+
"fips-us-west-2" : {
|
|
2555
|
+
"credentialScope" : {
|
|
2556
|
+
"region" : "us-west-2"
|
|
2557
|
+
},
|
|
2558
|
+
"hostname" : "glacier-fips.us-west-2.amazonaws.com"
|
|
2559
|
+
},
|
|
1776
2560
|
"me-south-1" : { },
|
|
1777
2561
|
"sa-east-1" : { },
|
|
1778
2562
|
"us-east-1" : { },
|
|
@@ -1795,6 +2579,30 @@
|
|
|
1795
2579
|
"eu-west-1" : { },
|
|
1796
2580
|
"eu-west-2" : { },
|
|
1797
2581
|
"eu-west-3" : { },
|
|
2582
|
+
"fips-us-east-1" : {
|
|
2583
|
+
"credentialScope" : {
|
|
2584
|
+
"region" : "us-east-1"
|
|
2585
|
+
},
|
|
2586
|
+
"hostname" : "glue-fips.us-east-1.amazonaws.com"
|
|
2587
|
+
},
|
|
2588
|
+
"fips-us-east-2" : {
|
|
2589
|
+
"credentialScope" : {
|
|
2590
|
+
"region" : "us-east-2"
|
|
2591
|
+
},
|
|
2592
|
+
"hostname" : "glue-fips.us-east-2.amazonaws.com"
|
|
2593
|
+
},
|
|
2594
|
+
"fips-us-west-1" : {
|
|
2595
|
+
"credentialScope" : {
|
|
2596
|
+
"region" : "us-west-1"
|
|
2597
|
+
},
|
|
2598
|
+
"hostname" : "glue-fips.us-west-1.amazonaws.com"
|
|
2599
|
+
},
|
|
2600
|
+
"fips-us-west-2" : {
|
|
2601
|
+
"credentialScope" : {
|
|
2602
|
+
"region" : "us-west-2"
|
|
2603
|
+
},
|
|
2604
|
+
"hostname" : "glue-fips.us-west-2.amazonaws.com"
|
|
2605
|
+
},
|
|
1798
2606
|
"me-south-1" : { },
|
|
1799
2607
|
"sa-east-1" : { },
|
|
1800
2608
|
"us-east-1" : { },
|
|
@@ -1824,7 +2632,9 @@
|
|
|
1824
2632
|
},
|
|
1825
2633
|
"groundstation" : {
|
|
1826
2634
|
"endpoints" : {
|
|
2635
|
+
"ap-southeast-2" : { },
|
|
1827
2636
|
"eu-north-1" : { },
|
|
2637
|
+
"eu-west-1" : { },
|
|
1828
2638
|
"me-south-1" : { },
|
|
1829
2639
|
"us-east-2" : { },
|
|
1830
2640
|
"us-west-2" : { }
|
|
@@ -1892,6 +2702,12 @@
|
|
|
1892
2702
|
"region" : "us-east-1"
|
|
1893
2703
|
},
|
|
1894
2704
|
"hostname" : "iam.amazonaws.com"
|
|
2705
|
+
},
|
|
2706
|
+
"iam-fips" : {
|
|
2707
|
+
"credentialScope" : {
|
|
2708
|
+
"region" : "us-east-1"
|
|
2709
|
+
},
|
|
2710
|
+
"hostname" : "iam-fips.amazonaws.com"
|
|
1895
2711
|
}
|
|
1896
2712
|
},
|
|
1897
2713
|
"isRegionalized" : false,
|
|
@@ -1921,6 +2737,30 @@
|
|
|
1921
2737
|
"eu-north-1" : { },
|
|
1922
2738
|
"eu-west-1" : { },
|
|
1923
2739
|
"eu-west-2" : { },
|
|
2740
|
+
"fips-us-east-1" : {
|
|
2741
|
+
"credentialScope" : {
|
|
2742
|
+
"region" : "us-east-1"
|
|
2743
|
+
},
|
|
2744
|
+
"hostname" : "inspector-fips.us-east-1.amazonaws.com"
|
|
2745
|
+
},
|
|
2746
|
+
"fips-us-east-2" : {
|
|
2747
|
+
"credentialScope" : {
|
|
2748
|
+
"region" : "us-east-2"
|
|
2749
|
+
},
|
|
2750
|
+
"hostname" : "inspector-fips.us-east-2.amazonaws.com"
|
|
2751
|
+
},
|
|
2752
|
+
"fips-us-west-1" : {
|
|
2753
|
+
"credentialScope" : {
|
|
2754
|
+
"region" : "us-west-1"
|
|
2755
|
+
},
|
|
2756
|
+
"hostname" : "inspector-fips.us-west-1.amazonaws.com"
|
|
2757
|
+
},
|
|
2758
|
+
"fips-us-west-2" : {
|
|
2759
|
+
"credentialScope" : {
|
|
2760
|
+
"region" : "us-west-2"
|
|
2761
|
+
},
|
|
2762
|
+
"hostname" : "inspector-fips.us-west-2.amazonaws.com"
|
|
2763
|
+
},
|
|
1924
2764
|
"us-east-1" : { },
|
|
1925
2765
|
"us-east-2" : { },
|
|
1926
2766
|
"us-west-1" : { },
|
|
@@ -2103,6 +2943,7 @@
|
|
|
2103
2943
|
},
|
|
2104
2944
|
"kinesis" : {
|
|
2105
2945
|
"endpoints" : {
|
|
2946
|
+
"af-south-1" : { },
|
|
2106
2947
|
"ap-east-1" : { },
|
|
2107
2948
|
"ap-northeast-1" : { },
|
|
2108
2949
|
"ap-northeast-2" : { },
|
|
@@ -2112,9 +2953,34 @@
|
|
|
2112
2953
|
"ca-central-1" : { },
|
|
2113
2954
|
"eu-central-1" : { },
|
|
2114
2955
|
"eu-north-1" : { },
|
|
2956
|
+
"eu-south-1" : { },
|
|
2115
2957
|
"eu-west-1" : { },
|
|
2116
2958
|
"eu-west-2" : { },
|
|
2117
2959
|
"eu-west-3" : { },
|
|
2960
|
+
"fips-us-east-1" : {
|
|
2961
|
+
"credentialScope" : {
|
|
2962
|
+
"region" : "us-east-1"
|
|
2963
|
+
},
|
|
2964
|
+
"hostname" : "kinesis-fips.us-east-1.amazonaws.com"
|
|
2965
|
+
},
|
|
2966
|
+
"fips-us-east-2" : {
|
|
2967
|
+
"credentialScope" : {
|
|
2968
|
+
"region" : "us-east-2"
|
|
2969
|
+
},
|
|
2970
|
+
"hostname" : "kinesis-fips.us-east-2.amazonaws.com"
|
|
2971
|
+
},
|
|
2972
|
+
"fips-us-west-1" : {
|
|
2973
|
+
"credentialScope" : {
|
|
2974
|
+
"region" : "us-west-1"
|
|
2975
|
+
},
|
|
2976
|
+
"hostname" : "kinesis-fips.us-west-1.amazonaws.com"
|
|
2977
|
+
},
|
|
2978
|
+
"fips-us-west-2" : {
|
|
2979
|
+
"credentialScope" : {
|
|
2980
|
+
"region" : "us-west-2"
|
|
2981
|
+
},
|
|
2982
|
+
"hostname" : "kinesis-fips.us-west-2.amazonaws.com"
|
|
2983
|
+
},
|
|
2118
2984
|
"me-south-1" : { },
|
|
2119
2985
|
"sa-east-1" : { },
|
|
2120
2986
|
"us-east-1" : { },
|
|
@@ -2165,6 +3031,7 @@
|
|
|
2165
3031
|
},
|
|
2166
3032
|
"kms" : {
|
|
2167
3033
|
"endpoints" : {
|
|
3034
|
+
"af-south-1" : { },
|
|
2168
3035
|
"ap-east-1" : { },
|
|
2169
3036
|
"ap-northeast-1" : { },
|
|
2170
3037
|
"ap-northeast-2" : { },
|
|
@@ -2174,6 +3041,7 @@
|
|
|
2174
3041
|
"ca-central-1" : { },
|
|
2175
3042
|
"eu-central-1" : { },
|
|
2176
3043
|
"eu-north-1" : { },
|
|
3044
|
+
"eu-south-1" : { },
|
|
2177
3045
|
"eu-west-1" : { },
|
|
2178
3046
|
"eu-west-2" : { },
|
|
2179
3047
|
"eu-west-3" : { },
|
|
@@ -2204,6 +3072,7 @@
|
|
|
2204
3072
|
},
|
|
2205
3073
|
"lambda" : {
|
|
2206
3074
|
"endpoints" : {
|
|
3075
|
+
"af-south-1" : { },
|
|
2207
3076
|
"ap-east-1" : { },
|
|
2208
3077
|
"ap-northeast-1" : { },
|
|
2209
3078
|
"ap-northeast-2" : { },
|
|
@@ -2213,9 +3082,34 @@
|
|
|
2213
3082
|
"ca-central-1" : { },
|
|
2214
3083
|
"eu-central-1" : { },
|
|
2215
3084
|
"eu-north-1" : { },
|
|
3085
|
+
"eu-south-1" : { },
|
|
2216
3086
|
"eu-west-1" : { },
|
|
2217
3087
|
"eu-west-2" : { },
|
|
2218
3088
|
"eu-west-3" : { },
|
|
3089
|
+
"fips-us-east-1" : {
|
|
3090
|
+
"credentialScope" : {
|
|
3091
|
+
"region" : "us-east-1"
|
|
3092
|
+
},
|
|
3093
|
+
"hostname" : "lambda-fips.us-east-1.amazonaws.com"
|
|
3094
|
+
},
|
|
3095
|
+
"fips-us-east-2" : {
|
|
3096
|
+
"credentialScope" : {
|
|
3097
|
+
"region" : "us-east-2"
|
|
3098
|
+
},
|
|
3099
|
+
"hostname" : "lambda-fips.us-east-2.amazonaws.com"
|
|
3100
|
+
},
|
|
3101
|
+
"fips-us-west-1" : {
|
|
3102
|
+
"credentialScope" : {
|
|
3103
|
+
"region" : "us-west-1"
|
|
3104
|
+
},
|
|
3105
|
+
"hostname" : "lambda-fips.us-west-1.amazonaws.com"
|
|
3106
|
+
},
|
|
3107
|
+
"fips-us-west-2" : {
|
|
3108
|
+
"credentialScope" : {
|
|
3109
|
+
"region" : "us-west-2"
|
|
3110
|
+
},
|
|
3111
|
+
"hostname" : "lambda-fips.us-west-2.amazonaws.com"
|
|
3112
|
+
},
|
|
2219
3113
|
"me-south-1" : { },
|
|
2220
3114
|
"sa-east-1" : { },
|
|
2221
3115
|
"us-east-1" : { },
|
|
@@ -2238,6 +3132,30 @@
|
|
|
2238
3132
|
"eu-west-1" : { },
|
|
2239
3133
|
"eu-west-2" : { },
|
|
2240
3134
|
"eu-west-3" : { },
|
|
3135
|
+
"fips-us-east-1" : {
|
|
3136
|
+
"credentialScope" : {
|
|
3137
|
+
"region" : "us-east-1"
|
|
3138
|
+
},
|
|
3139
|
+
"hostname" : "license-manager-fips.us-east-1.amazonaws.com"
|
|
3140
|
+
},
|
|
3141
|
+
"fips-us-east-2" : {
|
|
3142
|
+
"credentialScope" : {
|
|
3143
|
+
"region" : "us-east-2"
|
|
3144
|
+
},
|
|
3145
|
+
"hostname" : "license-manager-fips.us-east-2.amazonaws.com"
|
|
3146
|
+
},
|
|
3147
|
+
"fips-us-west-1" : {
|
|
3148
|
+
"credentialScope" : {
|
|
3149
|
+
"region" : "us-west-1"
|
|
3150
|
+
},
|
|
3151
|
+
"hostname" : "license-manager-fips.us-west-1.amazonaws.com"
|
|
3152
|
+
},
|
|
3153
|
+
"fips-us-west-2" : {
|
|
3154
|
+
"credentialScope" : {
|
|
3155
|
+
"region" : "us-west-2"
|
|
3156
|
+
},
|
|
3157
|
+
"hostname" : "license-manager-fips.us-west-2.amazonaws.com"
|
|
3158
|
+
},
|
|
2241
3159
|
"me-south-1" : { },
|
|
2242
3160
|
"sa-east-1" : { },
|
|
2243
3161
|
"us-east-1" : { },
|
|
@@ -2265,6 +3183,7 @@
|
|
|
2265
3183
|
},
|
|
2266
3184
|
"logs" : {
|
|
2267
3185
|
"endpoints" : {
|
|
3186
|
+
"af-south-1" : { },
|
|
2268
3187
|
"ap-east-1" : { },
|
|
2269
3188
|
"ap-northeast-1" : { },
|
|
2270
3189
|
"ap-northeast-2" : { },
|
|
@@ -2274,6 +3193,7 @@
|
|
|
2274
3193
|
"ca-central-1" : { },
|
|
2275
3194
|
"eu-central-1" : { },
|
|
2276
3195
|
"eu-north-1" : { },
|
|
3196
|
+
"eu-south-1" : { },
|
|
2277
3197
|
"eu-west-1" : { },
|
|
2278
3198
|
"eu-west-2" : { },
|
|
2279
3199
|
"eu-west-3" : { },
|
|
@@ -2293,6 +3213,10 @@
|
|
|
2293
3213
|
},
|
|
2294
3214
|
"managedblockchain" : {
|
|
2295
3215
|
"endpoints" : {
|
|
3216
|
+
"ap-northeast-1" : { },
|
|
3217
|
+
"ap-northeast-2" : { },
|
|
3218
|
+
"ap-southeast-1" : { },
|
|
3219
|
+
"eu-west-1" : { },
|
|
2296
3220
|
"us-east-1" : { }
|
|
2297
3221
|
}
|
|
2298
3222
|
},
|
|
@@ -2366,6 +3290,7 @@
|
|
|
2366
3290
|
"ap-southeast-1" : { },
|
|
2367
3291
|
"ap-southeast-2" : { },
|
|
2368
3292
|
"eu-central-1" : { },
|
|
3293
|
+
"eu-north-1" : { },
|
|
2369
3294
|
"eu-west-1" : { },
|
|
2370
3295
|
"eu-west-2" : { },
|
|
2371
3296
|
"eu-west-3" : { },
|
|
@@ -2383,6 +3308,7 @@
|
|
|
2383
3308
|
"eu-central-1" : { },
|
|
2384
3309
|
"eu-north-1" : { },
|
|
2385
3310
|
"eu-west-1" : { },
|
|
3311
|
+
"eu-west-2" : { },
|
|
2386
3312
|
"us-east-1" : { },
|
|
2387
3313
|
"us-west-2" : { }
|
|
2388
3314
|
}
|
|
@@ -2394,6 +3320,7 @@
|
|
|
2394
3320
|
}
|
|
2395
3321
|
},
|
|
2396
3322
|
"endpoints" : {
|
|
3323
|
+
"af-south-1" : { },
|
|
2397
3324
|
"ap-east-1" : { },
|
|
2398
3325
|
"ap-northeast-1" : { },
|
|
2399
3326
|
"ap-northeast-2" : { },
|
|
@@ -2403,6 +3330,7 @@
|
|
|
2403
3330
|
"ca-central-1" : { },
|
|
2404
3331
|
"eu-central-1" : { },
|
|
2405
3332
|
"eu-north-1" : { },
|
|
3333
|
+
"eu-south-1" : { },
|
|
2406
3334
|
"eu-west-1" : { },
|
|
2407
3335
|
"eu-west-2" : { },
|
|
2408
3336
|
"eu-west-3" : { },
|
|
@@ -2416,6 +3344,7 @@
|
|
|
2416
3344
|
},
|
|
2417
3345
|
"mgh" : {
|
|
2418
3346
|
"endpoints" : {
|
|
3347
|
+
"ap-southeast-2" : { },
|
|
2419
3348
|
"eu-central-1" : { },
|
|
2420
3349
|
"us-west-2" : { }
|
|
2421
3350
|
}
|
|
@@ -2432,8 +3361,11 @@
|
|
|
2432
3361
|
}
|
|
2433
3362
|
},
|
|
2434
3363
|
"endpoints" : {
|
|
3364
|
+
"ap-southeast-1" : { },
|
|
2435
3365
|
"ap-southeast-2" : { },
|
|
3366
|
+
"eu-central-1" : { },
|
|
2436
3367
|
"eu-west-1" : { },
|
|
3368
|
+
"eu-west-2" : { },
|
|
2437
3369
|
"us-east-1" : { },
|
|
2438
3370
|
"us-west-2" : { }
|
|
2439
3371
|
}
|
|
@@ -2443,6 +3375,7 @@
|
|
|
2443
3375
|
"protocols" : [ "http", "https" ]
|
|
2444
3376
|
},
|
|
2445
3377
|
"endpoints" : {
|
|
3378
|
+
"af-south-1" : { },
|
|
2446
3379
|
"ap-east-1" : { },
|
|
2447
3380
|
"ap-northeast-1" : { },
|
|
2448
3381
|
"ap-northeast-2" : { },
|
|
@@ -2452,9 +3385,34 @@
|
|
|
2452
3385
|
"ca-central-1" : { },
|
|
2453
3386
|
"eu-central-1" : { },
|
|
2454
3387
|
"eu-north-1" : { },
|
|
3388
|
+
"eu-south-1" : { },
|
|
2455
3389
|
"eu-west-1" : { },
|
|
2456
3390
|
"eu-west-2" : { },
|
|
2457
3391
|
"eu-west-3" : { },
|
|
3392
|
+
"fips-us-east-1" : {
|
|
3393
|
+
"credentialScope" : {
|
|
3394
|
+
"region" : "us-east-1"
|
|
3395
|
+
},
|
|
3396
|
+
"hostname" : "monitoring-fips.us-east-1.amazonaws.com"
|
|
3397
|
+
},
|
|
3398
|
+
"fips-us-east-2" : {
|
|
3399
|
+
"credentialScope" : {
|
|
3400
|
+
"region" : "us-east-2"
|
|
3401
|
+
},
|
|
3402
|
+
"hostname" : "monitoring-fips.us-east-2.amazonaws.com"
|
|
3403
|
+
},
|
|
3404
|
+
"fips-us-west-1" : {
|
|
3405
|
+
"credentialScope" : {
|
|
3406
|
+
"region" : "us-west-1"
|
|
3407
|
+
},
|
|
3408
|
+
"hostname" : "monitoring-fips.us-west-1.amazonaws.com"
|
|
3409
|
+
},
|
|
3410
|
+
"fips-us-west-2" : {
|
|
3411
|
+
"credentialScope" : {
|
|
3412
|
+
"region" : "us-west-2"
|
|
3413
|
+
},
|
|
3414
|
+
"hostname" : "monitoring-fips.us-west-2.amazonaws.com"
|
|
3415
|
+
},
|
|
2458
3416
|
"me-south-1" : { },
|
|
2459
3417
|
"sa-east-1" : { },
|
|
2460
3418
|
"us-east-1" : { },
|
|
@@ -2580,6 +3538,12 @@
|
|
|
2580
3538
|
},
|
|
2581
3539
|
"hostname" : "rds.eu-west-2.amazonaws.com"
|
|
2582
3540
|
},
|
|
3541
|
+
"eu-west-3" : {
|
|
3542
|
+
"credentialScope" : {
|
|
3543
|
+
"region" : "eu-west-3"
|
|
3544
|
+
},
|
|
3545
|
+
"hostname" : "rds.eu-west-3.amazonaws.com"
|
|
3546
|
+
},
|
|
2583
3547
|
"me-south-1" : {
|
|
2584
3548
|
"credentialScope" : {
|
|
2585
3549
|
"region" : "me-south-1"
|
|
@@ -2703,6 +3667,12 @@
|
|
|
2703
3667
|
"region" : "us-east-1"
|
|
2704
3668
|
},
|
|
2705
3669
|
"hostname" : "organizations.us-east-1.amazonaws.com"
|
|
3670
|
+
},
|
|
3671
|
+
"fips-aws-global" : {
|
|
3672
|
+
"credentialScope" : {
|
|
3673
|
+
"region" : "us-east-1"
|
|
3674
|
+
},
|
|
3675
|
+
"hostname" : "organizations-fips.us-east-1.amazonaws.com"
|
|
2706
3676
|
}
|
|
2707
3677
|
},
|
|
2708
3678
|
"isRegionalized" : false,
|
|
@@ -2779,6 +3749,30 @@
|
|
|
2779
3749
|
"eu-west-1" : { },
|
|
2780
3750
|
"eu-west-2" : { },
|
|
2781
3751
|
"eu-west-3" : { },
|
|
3752
|
+
"fips-us-east-1" : {
|
|
3753
|
+
"credentialScope" : {
|
|
3754
|
+
"region" : "us-east-1"
|
|
3755
|
+
},
|
|
3756
|
+
"hostname" : "polly-fips.us-east-1.amazonaws.com"
|
|
3757
|
+
},
|
|
3758
|
+
"fips-us-east-2" : {
|
|
3759
|
+
"credentialScope" : {
|
|
3760
|
+
"region" : "us-east-2"
|
|
3761
|
+
},
|
|
3762
|
+
"hostname" : "polly-fips.us-east-2.amazonaws.com"
|
|
3763
|
+
},
|
|
3764
|
+
"fips-us-west-1" : {
|
|
3765
|
+
"credentialScope" : {
|
|
3766
|
+
"region" : "us-west-1"
|
|
3767
|
+
},
|
|
3768
|
+
"hostname" : "polly-fips.us-west-1.amazonaws.com"
|
|
3769
|
+
},
|
|
3770
|
+
"fips-us-west-2" : {
|
|
3771
|
+
"credentialScope" : {
|
|
3772
|
+
"region" : "us-west-2"
|
|
3773
|
+
},
|
|
3774
|
+
"hostname" : "polly-fips.us-west-2.amazonaws.com"
|
|
3775
|
+
},
|
|
2782
3776
|
"me-south-1" : { },
|
|
2783
3777
|
"sa-east-1" : { },
|
|
2784
3778
|
"us-east-1" : { },
|
|
@@ -2893,6 +3887,7 @@
|
|
|
2893
3887
|
},
|
|
2894
3888
|
"rds" : {
|
|
2895
3889
|
"endpoints" : {
|
|
3890
|
+
"af-south-1" : { },
|
|
2896
3891
|
"ap-east-1" : { },
|
|
2897
3892
|
"ap-northeast-1" : { },
|
|
2898
3893
|
"ap-northeast-2" : { },
|
|
@@ -2902,10 +3897,41 @@
|
|
|
2902
3897
|
"ca-central-1" : { },
|
|
2903
3898
|
"eu-central-1" : { },
|
|
2904
3899
|
"eu-north-1" : { },
|
|
3900
|
+
"eu-south-1" : { },
|
|
2905
3901
|
"eu-west-1" : { },
|
|
2906
3902
|
"eu-west-2" : { },
|
|
2907
3903
|
"eu-west-3" : { },
|
|
2908
3904
|
"me-south-1" : { },
|
|
3905
|
+
"rds-fips.ca-central-1" : {
|
|
3906
|
+
"credentialScope" : {
|
|
3907
|
+
"region" : "ca-central-1"
|
|
3908
|
+
},
|
|
3909
|
+
"hostname" : "rds-fips.ca-central-1.amazonaws.com"
|
|
3910
|
+
},
|
|
3911
|
+
"rds-fips.us-east-1" : {
|
|
3912
|
+
"credentialScope" : {
|
|
3913
|
+
"region" : "us-east-1"
|
|
3914
|
+
},
|
|
3915
|
+
"hostname" : "rds-fips.us-east-1.amazonaws.com"
|
|
3916
|
+
},
|
|
3917
|
+
"rds-fips.us-east-2" : {
|
|
3918
|
+
"credentialScope" : {
|
|
3919
|
+
"region" : "us-east-2"
|
|
3920
|
+
},
|
|
3921
|
+
"hostname" : "rds-fips.us-east-2.amazonaws.com"
|
|
3922
|
+
},
|
|
3923
|
+
"rds-fips.us-west-1" : {
|
|
3924
|
+
"credentialScope" : {
|
|
3925
|
+
"region" : "us-west-1"
|
|
3926
|
+
},
|
|
3927
|
+
"hostname" : "rds-fips.us-west-1.amazonaws.com"
|
|
3928
|
+
},
|
|
3929
|
+
"rds-fips.us-west-2" : {
|
|
3930
|
+
"credentialScope" : {
|
|
3931
|
+
"region" : "us-west-2"
|
|
3932
|
+
},
|
|
3933
|
+
"hostname" : "rds-fips.us-west-2.amazonaws.com"
|
|
3934
|
+
},
|
|
2909
3935
|
"sa-east-1" : { },
|
|
2910
3936
|
"us-east-1" : {
|
|
2911
3937
|
"sslCommonName" : "{service}.{dnsSuffix}"
|
|
@@ -2917,6 +3943,7 @@
|
|
|
2917
3943
|
},
|
|
2918
3944
|
"redshift" : {
|
|
2919
3945
|
"endpoints" : {
|
|
3946
|
+
"af-south-1" : { },
|
|
2920
3947
|
"ap-east-1" : { },
|
|
2921
3948
|
"ap-northeast-1" : { },
|
|
2922
3949
|
"ap-northeast-2" : { },
|
|
@@ -2926,9 +3953,40 @@
|
|
|
2926
3953
|
"ca-central-1" : { },
|
|
2927
3954
|
"eu-central-1" : { },
|
|
2928
3955
|
"eu-north-1" : { },
|
|
3956
|
+
"eu-south-1" : { },
|
|
2929
3957
|
"eu-west-1" : { },
|
|
2930
3958
|
"eu-west-2" : { },
|
|
2931
3959
|
"eu-west-3" : { },
|
|
3960
|
+
"fips-ca-central-1" : {
|
|
3961
|
+
"credentialScope" : {
|
|
3962
|
+
"region" : "ca-central-1"
|
|
3963
|
+
},
|
|
3964
|
+
"hostname" : "redshift-fips.ca-central-1.amazonaws.com"
|
|
3965
|
+
},
|
|
3966
|
+
"fips-us-east-1" : {
|
|
3967
|
+
"credentialScope" : {
|
|
3968
|
+
"region" : "us-east-1"
|
|
3969
|
+
},
|
|
3970
|
+
"hostname" : "redshift-fips.us-east-1.amazonaws.com"
|
|
3971
|
+
},
|
|
3972
|
+
"fips-us-east-2" : {
|
|
3973
|
+
"credentialScope" : {
|
|
3974
|
+
"region" : "us-east-2"
|
|
3975
|
+
},
|
|
3976
|
+
"hostname" : "redshift-fips.us-east-2.amazonaws.com"
|
|
3977
|
+
},
|
|
3978
|
+
"fips-us-west-1" : {
|
|
3979
|
+
"credentialScope" : {
|
|
3980
|
+
"region" : "us-west-1"
|
|
3981
|
+
},
|
|
3982
|
+
"hostname" : "redshift-fips.us-west-1.amazonaws.com"
|
|
3983
|
+
},
|
|
3984
|
+
"fips-us-west-2" : {
|
|
3985
|
+
"credentialScope" : {
|
|
3986
|
+
"region" : "us-west-2"
|
|
3987
|
+
},
|
|
3988
|
+
"hostname" : "redshift-fips.us-west-2.amazonaws.com"
|
|
3989
|
+
},
|
|
2932
3990
|
"me-south-1" : { },
|
|
2933
3991
|
"sa-east-1" : { },
|
|
2934
3992
|
"us-east-1" : { },
|
|
@@ -2955,6 +4013,7 @@
|
|
|
2955
4013
|
},
|
|
2956
4014
|
"resource-groups" : {
|
|
2957
4015
|
"endpoints" : {
|
|
4016
|
+
"af-south-1" : { },
|
|
2958
4017
|
"ap-east-1" : { },
|
|
2959
4018
|
"ap-northeast-1" : { },
|
|
2960
4019
|
"ap-northeast-2" : { },
|
|
@@ -2964,6 +4023,7 @@
|
|
|
2964
4023
|
"ca-central-1" : { },
|
|
2965
4024
|
"eu-central-1" : { },
|
|
2966
4025
|
"eu-north-1" : { },
|
|
4026
|
+
"eu-south-1" : { },
|
|
2967
4027
|
"eu-west-1" : { },
|
|
2968
4028
|
"eu-west-2" : { },
|
|
2969
4029
|
"eu-west-3" : { },
|
|
@@ -3044,6 +4104,8 @@
|
|
|
3044
4104
|
"eu-west-1" : { },
|
|
3045
4105
|
"eu-west-2" : { },
|
|
3046
4106
|
"eu-west-3" : { },
|
|
4107
|
+
"me-south-1" : { },
|
|
4108
|
+
"sa-east-1" : { },
|
|
3047
4109
|
"us-east-1" : { },
|
|
3048
4110
|
"us-east-2" : { },
|
|
3049
4111
|
"us-west-1" : { },
|
|
@@ -3057,8 +4119,11 @@
|
|
|
3057
4119
|
}
|
|
3058
4120
|
},
|
|
3059
4121
|
"endpoints" : {
|
|
4122
|
+
"ap-southeast-1" : { },
|
|
3060
4123
|
"ap-southeast-2" : { },
|
|
4124
|
+
"eu-central-1" : { },
|
|
3061
4125
|
"eu-west-1" : { },
|
|
4126
|
+
"eu-west-2" : { },
|
|
3062
4127
|
"us-east-1" : { },
|
|
3063
4128
|
"us-west-2" : { }
|
|
3064
4129
|
}
|
|
@@ -3115,6 +4180,7 @@
|
|
|
3115
4180
|
"signatureVersions" : [ "s3v4" ]
|
|
3116
4181
|
},
|
|
3117
4182
|
"endpoints" : {
|
|
4183
|
+
"af-south-1" : { },
|
|
3118
4184
|
"ap-east-1" : { },
|
|
3119
4185
|
"ap-northeast-1" : {
|
|
3120
4186
|
"hostname" : "s3.ap-northeast-1.amazonaws.com",
|
|
@@ -3140,6 +4206,7 @@
|
|
|
3140
4206
|
"ca-central-1" : { },
|
|
3141
4207
|
"eu-central-1" : { },
|
|
3142
4208
|
"eu-north-1" : { },
|
|
4209
|
+
"eu-south-1" : { },
|
|
3143
4210
|
"eu-west-1" : {
|
|
3144
4211
|
"hostname" : "s3.eu-west-1.amazonaws.com",
|
|
3145
4212
|
"signatureVersions" : [ "s3", "s3v4" ]
|
|
@@ -3578,12 +4645,24 @@
|
|
|
3578
4645
|
"sslCommonName" : "shield.us-east-1.amazonaws.com"
|
|
3579
4646
|
},
|
|
3580
4647
|
"endpoints" : {
|
|
3581
|
-
"us-east-1" : {
|
|
4648
|
+
"fips-us-east-1" : {
|
|
4649
|
+
"credentialScope" : {
|
|
4650
|
+
"region" : "us-east-1"
|
|
4651
|
+
},
|
|
4652
|
+
"hostname" : "shield-fips.us-east-1.amazonaws.com"
|
|
4653
|
+
},
|
|
4654
|
+
"us-east-1" : {
|
|
4655
|
+
"credentialScope" : {
|
|
4656
|
+
"region" : "us-east-1"
|
|
4657
|
+
},
|
|
4658
|
+
"hostname" : "shield.us-east-1.amazonaws.com"
|
|
4659
|
+
}
|
|
3582
4660
|
},
|
|
3583
4661
|
"isRegionalized" : false
|
|
3584
4662
|
},
|
|
3585
4663
|
"sms" : {
|
|
3586
4664
|
"endpoints" : {
|
|
4665
|
+
"af-south-1" : { },
|
|
3587
4666
|
"ap-east-1" : { },
|
|
3588
4667
|
"ap-northeast-1" : { },
|
|
3589
4668
|
"ap-northeast-2" : { },
|
|
@@ -3593,9 +4672,34 @@
|
|
|
3593
4672
|
"ca-central-1" : { },
|
|
3594
4673
|
"eu-central-1" : { },
|
|
3595
4674
|
"eu-north-1" : { },
|
|
4675
|
+
"eu-south-1" : { },
|
|
3596
4676
|
"eu-west-1" : { },
|
|
3597
4677
|
"eu-west-2" : { },
|
|
3598
4678
|
"eu-west-3" : { },
|
|
4679
|
+
"fips-us-east-1" : {
|
|
4680
|
+
"credentialScope" : {
|
|
4681
|
+
"region" : "us-east-1"
|
|
4682
|
+
},
|
|
4683
|
+
"hostname" : "sms-fips.us-east-1.amazonaws.com"
|
|
4684
|
+
},
|
|
4685
|
+
"fips-us-east-2" : {
|
|
4686
|
+
"credentialScope" : {
|
|
4687
|
+
"region" : "us-east-2"
|
|
4688
|
+
},
|
|
4689
|
+
"hostname" : "sms-fips.us-east-2.amazonaws.com"
|
|
4690
|
+
},
|
|
4691
|
+
"fips-us-west-1" : {
|
|
4692
|
+
"credentialScope" : {
|
|
4693
|
+
"region" : "us-west-1"
|
|
4694
|
+
},
|
|
4695
|
+
"hostname" : "sms-fips.us-west-1.amazonaws.com"
|
|
4696
|
+
},
|
|
4697
|
+
"fips-us-west-2" : {
|
|
4698
|
+
"credentialScope" : {
|
|
4699
|
+
"region" : "us-west-2"
|
|
4700
|
+
},
|
|
4701
|
+
"hostname" : "sms-fips.us-west-2.amazonaws.com"
|
|
4702
|
+
},
|
|
3599
4703
|
"me-south-1" : { },
|
|
3600
4704
|
"sa-east-1" : { },
|
|
3601
4705
|
"us-east-1" : { },
|
|
@@ -3616,6 +4720,96 @@
|
|
|
3616
4720
|
"eu-west-1" : { },
|
|
3617
4721
|
"eu-west-2" : { },
|
|
3618
4722
|
"eu-west-3" : { },
|
|
4723
|
+
"fips-ap-northeast-1" : {
|
|
4724
|
+
"credentialScope" : {
|
|
4725
|
+
"region" : "ap-northeast-1"
|
|
4726
|
+
},
|
|
4727
|
+
"hostname" : "snowball-fips.ap-northeast-1.amazonaws.com"
|
|
4728
|
+
},
|
|
4729
|
+
"fips-ap-northeast-2" : {
|
|
4730
|
+
"credentialScope" : {
|
|
4731
|
+
"region" : "ap-northeast-2"
|
|
4732
|
+
},
|
|
4733
|
+
"hostname" : "snowball-fips.ap-northeast-2.amazonaws.com"
|
|
4734
|
+
},
|
|
4735
|
+
"fips-ap-south-1" : {
|
|
4736
|
+
"credentialScope" : {
|
|
4737
|
+
"region" : "ap-south-1"
|
|
4738
|
+
},
|
|
4739
|
+
"hostname" : "snowball-fips.ap-south-1.amazonaws.com"
|
|
4740
|
+
},
|
|
4741
|
+
"fips-ap-southeast-1" : {
|
|
4742
|
+
"credentialScope" : {
|
|
4743
|
+
"region" : "ap-southeast-1"
|
|
4744
|
+
},
|
|
4745
|
+
"hostname" : "snowball-fips.ap-southeast-1.amazonaws.com"
|
|
4746
|
+
},
|
|
4747
|
+
"fips-ap-southeast-2" : {
|
|
4748
|
+
"credentialScope" : {
|
|
4749
|
+
"region" : "ap-southeast-2"
|
|
4750
|
+
},
|
|
4751
|
+
"hostname" : "snowball-fips.ap-southeast-2.amazonaws.com"
|
|
4752
|
+
},
|
|
4753
|
+
"fips-ca-central-1" : {
|
|
4754
|
+
"credentialScope" : {
|
|
4755
|
+
"region" : "ca-central-1"
|
|
4756
|
+
},
|
|
4757
|
+
"hostname" : "snowball-fips.ca-central-1.amazonaws.com"
|
|
4758
|
+
},
|
|
4759
|
+
"fips-eu-central-1" : {
|
|
4760
|
+
"credentialScope" : {
|
|
4761
|
+
"region" : "eu-central-1"
|
|
4762
|
+
},
|
|
4763
|
+
"hostname" : "snowball-fips.eu-central-1.amazonaws.com"
|
|
4764
|
+
},
|
|
4765
|
+
"fips-eu-west-1" : {
|
|
4766
|
+
"credentialScope" : {
|
|
4767
|
+
"region" : "eu-west-1"
|
|
4768
|
+
},
|
|
4769
|
+
"hostname" : "snowball-fips.eu-west-1.amazonaws.com"
|
|
4770
|
+
},
|
|
4771
|
+
"fips-eu-west-2" : {
|
|
4772
|
+
"credentialScope" : {
|
|
4773
|
+
"region" : "eu-west-2"
|
|
4774
|
+
},
|
|
4775
|
+
"hostname" : "snowball-fips.eu-west-2.amazonaws.com"
|
|
4776
|
+
},
|
|
4777
|
+
"fips-eu-west-3" : {
|
|
4778
|
+
"credentialScope" : {
|
|
4779
|
+
"region" : "eu-west-3"
|
|
4780
|
+
},
|
|
4781
|
+
"hostname" : "snowball-fips.eu-west-3.amazonaws.com"
|
|
4782
|
+
},
|
|
4783
|
+
"fips-sa-east-1" : {
|
|
4784
|
+
"credentialScope" : {
|
|
4785
|
+
"region" : "sa-east-1"
|
|
4786
|
+
},
|
|
4787
|
+
"hostname" : "snowball-fips.sa-east-1.amazonaws.com"
|
|
4788
|
+
},
|
|
4789
|
+
"fips-us-east-1" : {
|
|
4790
|
+
"credentialScope" : {
|
|
4791
|
+
"region" : "us-east-1"
|
|
4792
|
+
},
|
|
4793
|
+
"hostname" : "snowball-fips.us-east-1.amazonaws.com"
|
|
4794
|
+
},
|
|
4795
|
+
"fips-us-east-2" : {
|
|
4796
|
+
"credentialScope" : {
|
|
4797
|
+
"region" : "us-east-2"
|
|
4798
|
+
},
|
|
4799
|
+
"hostname" : "snowball-fips.us-east-2.amazonaws.com"
|
|
4800
|
+
},
|
|
4801
|
+
"fips-us-west-1" : {
|
|
4802
|
+
"credentialScope" : {
|
|
4803
|
+
"region" : "us-west-1"
|
|
4804
|
+
},
|
|
4805
|
+
"hostname" : "snowball-fips.us-west-1.amazonaws.com"
|
|
4806
|
+
},
|
|
4807
|
+
"fips-us-west-2" : {
|
|
4808
|
+
"credentialScope" : {
|
|
4809
|
+
"region" : "us-west-2"
|
|
4810
|
+
},
|
|
4811
|
+
"hostname" : "snowball-fips.us-west-2.amazonaws.com"
|
|
4812
|
+
},
|
|
3619
4813
|
"sa-east-1" : { },
|
|
3620
4814
|
"us-east-1" : { },
|
|
3621
4815
|
"us-east-2" : { },
|
|
@@ -3628,6 +4822,7 @@
|
|
|
3628
4822
|
"protocols" : [ "http", "https" ]
|
|
3629
4823
|
},
|
|
3630
4824
|
"endpoints" : {
|
|
4825
|
+
"af-south-1" : { },
|
|
3631
4826
|
"ap-east-1" : { },
|
|
3632
4827
|
"ap-northeast-1" : { },
|
|
3633
4828
|
"ap-northeast-2" : { },
|
|
@@ -3637,9 +4832,34 @@
|
|
|
3637
4832
|
"ca-central-1" : { },
|
|
3638
4833
|
"eu-central-1" : { },
|
|
3639
4834
|
"eu-north-1" : { },
|
|
4835
|
+
"eu-south-1" : { },
|
|
3640
4836
|
"eu-west-1" : { },
|
|
3641
4837
|
"eu-west-2" : { },
|
|
3642
4838
|
"eu-west-3" : { },
|
|
4839
|
+
"fips-us-east-1" : {
|
|
4840
|
+
"credentialScope" : {
|
|
4841
|
+
"region" : "us-east-1"
|
|
4842
|
+
},
|
|
4843
|
+
"hostname" : "sns-fips.us-east-1.amazonaws.com"
|
|
4844
|
+
},
|
|
4845
|
+
"fips-us-east-2" : {
|
|
4846
|
+
"credentialScope" : {
|
|
4847
|
+
"region" : "us-east-2"
|
|
4848
|
+
},
|
|
4849
|
+
"hostname" : "sns-fips.us-east-2.amazonaws.com"
|
|
4850
|
+
},
|
|
4851
|
+
"fips-us-west-1" : {
|
|
4852
|
+
"credentialScope" : {
|
|
4853
|
+
"region" : "us-west-1"
|
|
4854
|
+
},
|
|
4855
|
+
"hostname" : "sns-fips.us-west-1.amazonaws.com"
|
|
4856
|
+
},
|
|
4857
|
+
"fips-us-west-2" : {
|
|
4858
|
+
"credentialScope" : {
|
|
4859
|
+
"region" : "us-west-2"
|
|
4860
|
+
},
|
|
4861
|
+
"hostname" : "sns-fips.us-west-2.amazonaws.com"
|
|
4862
|
+
},
|
|
3643
4863
|
"me-south-1" : { },
|
|
3644
4864
|
"sa-east-1" : { },
|
|
3645
4865
|
"us-east-1" : { },
|
|
@@ -3654,6 +4874,7 @@
|
|
|
3654
4874
|
"sslCommonName" : "{region}.queue.{dnsSuffix}"
|
|
3655
4875
|
},
|
|
3656
4876
|
"endpoints" : {
|
|
4877
|
+
"af-south-1" : { },
|
|
3657
4878
|
"ap-east-1" : { },
|
|
3658
4879
|
"ap-northeast-1" : { },
|
|
3659
4880
|
"ap-northeast-2" : { },
|
|
@@ -3663,6 +4884,7 @@
|
|
|
3663
4884
|
"ca-central-1" : { },
|
|
3664
4885
|
"eu-central-1" : { },
|
|
3665
4886
|
"eu-north-1" : { },
|
|
4887
|
+
"eu-south-1" : { },
|
|
3666
4888
|
"eu-west-1" : { },
|
|
3667
4889
|
"eu-west-2" : { },
|
|
3668
4890
|
"eu-west-3" : { },
|
|
@@ -3702,6 +4924,7 @@
|
|
|
3702
4924
|
},
|
|
3703
4925
|
"ssm" : {
|
|
3704
4926
|
"endpoints" : {
|
|
4927
|
+
"af-south-1" : { },
|
|
3705
4928
|
"ap-east-1" : { },
|
|
3706
4929
|
"ap-northeast-1" : { },
|
|
3707
4930
|
"ap-northeast-2" : { },
|
|
@@ -3711,11 +4934,60 @@
|
|
|
3711
4934
|
"ca-central-1" : { },
|
|
3712
4935
|
"eu-central-1" : { },
|
|
3713
4936
|
"eu-north-1" : { },
|
|
4937
|
+
"eu-south-1" : { },
|
|
3714
4938
|
"eu-west-1" : { },
|
|
3715
4939
|
"eu-west-2" : { },
|
|
3716
4940
|
"eu-west-3" : { },
|
|
4941
|
+
"fips-us-east-1" : {
|
|
4942
|
+
"credentialScope" : {
|
|
4943
|
+
"region" : "us-east-1"
|
|
4944
|
+
},
|
|
4945
|
+
"hostname" : "ssm-fips.us-east-1.amazonaws.com"
|
|
4946
|
+
},
|
|
4947
|
+
"fips-us-east-2" : {
|
|
4948
|
+
"credentialScope" : {
|
|
4949
|
+
"region" : "us-east-2"
|
|
4950
|
+
},
|
|
4951
|
+
"hostname" : "ssm-fips.us-east-2.amazonaws.com"
|
|
4952
|
+
},
|
|
4953
|
+
"fips-us-west-1" : {
|
|
4954
|
+
"credentialScope" : {
|
|
4955
|
+
"region" : "us-west-1"
|
|
4956
|
+
},
|
|
4957
|
+
"hostname" : "ssm-fips.us-west-1.amazonaws.com"
|
|
4958
|
+
},
|
|
4959
|
+
"fips-us-west-2" : {
|
|
4960
|
+
"credentialScope" : {
|
|
4961
|
+
"region" : "us-west-2"
|
|
4962
|
+
},
|
|
4963
|
+
"hostname" : "ssm-fips.us-west-2.amazonaws.com"
|
|
4964
|
+
},
|
|
3717
4965
|
"me-south-1" : { },
|
|
3718
4966
|
"sa-east-1" : { },
|
|
4967
|
+
"ssm-facade-fips-us-east-1" : {
|
|
4968
|
+
"credentialScope" : {
|
|
4969
|
+
"region" : "us-east-1"
|
|
4970
|
+
},
|
|
4971
|
+
"hostname" : "ssm-facade-fips.us-east-1.amazonaws.com"
|
|
4972
|
+
},
|
|
4973
|
+
"ssm-facade-fips-us-east-2" : {
|
|
4974
|
+
"credentialScope" : {
|
|
4975
|
+
"region" : "us-east-2"
|
|
4976
|
+
},
|
|
4977
|
+
"hostname" : "ssm-facade-fips.us-east-2.amazonaws.com"
|
|
4978
|
+
},
|
|
4979
|
+
"ssm-facade-fips-us-west-1" : {
|
|
4980
|
+
"credentialScope" : {
|
|
4981
|
+
"region" : "us-west-1"
|
|
4982
|
+
},
|
|
4983
|
+
"hostname" : "ssm-facade-fips.us-west-1.amazonaws.com"
|
|
4984
|
+
},
|
|
4985
|
+
"ssm-facade-fips-us-west-2" : {
|
|
4986
|
+
"credentialScope" : {
|
|
4987
|
+
"region" : "us-west-2"
|
|
4988
|
+
},
|
|
4989
|
+
"hostname" : "ssm-facade-fips.us-west-2.amazonaws.com"
|
|
4990
|
+
},
|
|
3719
4991
|
"us-east-1" : { },
|
|
3720
4992
|
"us-east-2" : { },
|
|
3721
4993
|
"us-west-1" : { },
|
|
@@ -3724,6 +4996,7 @@
|
|
|
3724
4996
|
},
|
|
3725
4997
|
"states" : {
|
|
3726
4998
|
"endpoints" : {
|
|
4999
|
+
"af-south-1" : { },
|
|
3727
5000
|
"ap-east-1" : { },
|
|
3728
5001
|
"ap-northeast-1" : { },
|
|
3729
5002
|
"ap-northeast-2" : { },
|
|
@@ -3733,9 +5006,34 @@
|
|
|
3733
5006
|
"ca-central-1" : { },
|
|
3734
5007
|
"eu-central-1" : { },
|
|
3735
5008
|
"eu-north-1" : { },
|
|
5009
|
+
"eu-south-1" : { },
|
|
3736
5010
|
"eu-west-1" : { },
|
|
3737
5011
|
"eu-west-2" : { },
|
|
3738
5012
|
"eu-west-3" : { },
|
|
5013
|
+
"fips-us-east-1" : {
|
|
5014
|
+
"credentialScope" : {
|
|
5015
|
+
"region" : "us-east-1"
|
|
5016
|
+
},
|
|
5017
|
+
"hostname" : "states-fips.us-east-1.amazonaws.com"
|
|
5018
|
+
},
|
|
5019
|
+
"fips-us-east-2" : {
|
|
5020
|
+
"credentialScope" : {
|
|
5021
|
+
"region" : "us-east-2"
|
|
5022
|
+
},
|
|
5023
|
+
"hostname" : "states-fips.us-east-2.amazonaws.com"
|
|
5024
|
+
},
|
|
5025
|
+
"fips-us-west-1" : {
|
|
5026
|
+
"credentialScope" : {
|
|
5027
|
+
"region" : "us-west-1"
|
|
5028
|
+
},
|
|
5029
|
+
"hostname" : "states-fips.us-west-1.amazonaws.com"
|
|
5030
|
+
},
|
|
5031
|
+
"fips-us-west-2" : {
|
|
5032
|
+
"credentialScope" : {
|
|
5033
|
+
"region" : "us-west-2"
|
|
5034
|
+
},
|
|
5035
|
+
"hostname" : "states-fips.us-west-2.amazonaws.com"
|
|
5036
|
+
},
|
|
3739
5037
|
"me-south-1" : { },
|
|
3740
5038
|
"sa-east-1" : { },
|
|
3741
5039
|
"us-east-1" : { },
|
|
@@ -3832,6 +5130,7 @@
|
|
|
3832
5130
|
},
|
|
3833
5131
|
"sts" : {
|
|
3834
5132
|
"endpoints" : {
|
|
5133
|
+
"af-south-1" : { },
|
|
3835
5134
|
"ap-east-1" : { },
|
|
3836
5135
|
"ap-northeast-1" : { },
|
|
3837
5136
|
"ap-northeast-2" : { },
|
|
@@ -3847,6 +5146,7 @@
|
|
|
3847
5146
|
"ca-central-1" : { },
|
|
3848
5147
|
"eu-central-1" : { },
|
|
3849
5148
|
"eu-north-1" : { },
|
|
5149
|
+
"eu-south-1" : { },
|
|
3850
5150
|
"eu-west-1" : { },
|
|
3851
5151
|
"eu-west-2" : { },
|
|
3852
5152
|
"eu-west-3" : { },
|
|
@@ -3896,6 +5196,7 @@
|
|
|
3896
5196
|
},
|
|
3897
5197
|
"swf" : {
|
|
3898
5198
|
"endpoints" : {
|
|
5199
|
+
"af-south-1" : { },
|
|
3899
5200
|
"ap-east-1" : { },
|
|
3900
5201
|
"ap-northeast-1" : { },
|
|
3901
5202
|
"ap-northeast-2" : { },
|
|
@@ -3905,9 +5206,34 @@
|
|
|
3905
5206
|
"ca-central-1" : { },
|
|
3906
5207
|
"eu-central-1" : { },
|
|
3907
5208
|
"eu-north-1" : { },
|
|
5209
|
+
"eu-south-1" : { },
|
|
3908
5210
|
"eu-west-1" : { },
|
|
3909
5211
|
"eu-west-2" : { },
|
|
3910
5212
|
"eu-west-3" : { },
|
|
5213
|
+
"fips-us-east-1" : {
|
|
5214
|
+
"credentialScope" : {
|
|
5215
|
+
"region" : "us-east-1"
|
|
5216
|
+
},
|
|
5217
|
+
"hostname" : "swf-fips.us-east-1.amazonaws.com"
|
|
5218
|
+
},
|
|
5219
|
+
"fips-us-east-2" : {
|
|
5220
|
+
"credentialScope" : {
|
|
5221
|
+
"region" : "us-east-2"
|
|
5222
|
+
},
|
|
5223
|
+
"hostname" : "swf-fips.us-east-2.amazonaws.com"
|
|
5224
|
+
},
|
|
5225
|
+
"fips-us-west-1" : {
|
|
5226
|
+
"credentialScope" : {
|
|
5227
|
+
"region" : "us-west-1"
|
|
5228
|
+
},
|
|
5229
|
+
"hostname" : "swf-fips.us-west-1.amazonaws.com"
|
|
5230
|
+
},
|
|
5231
|
+
"fips-us-west-2" : {
|
|
5232
|
+
"credentialScope" : {
|
|
5233
|
+
"region" : "us-west-2"
|
|
5234
|
+
},
|
|
5235
|
+
"hostname" : "swf-fips.us-west-2.amazonaws.com"
|
|
5236
|
+
},
|
|
3911
5237
|
"me-south-1" : { },
|
|
3912
5238
|
"sa-east-1" : { },
|
|
3913
5239
|
"us-east-1" : { },
|
|
@@ -3918,6 +5244,7 @@
|
|
|
3918
5244
|
},
|
|
3919
5245
|
"tagging" : {
|
|
3920
5246
|
"endpoints" : {
|
|
5247
|
+
"af-south-1" : { },
|
|
3921
5248
|
"ap-east-1" : { },
|
|
3922
5249
|
"ap-northeast-1" : { },
|
|
3923
5250
|
"ap-northeast-2" : { },
|
|
@@ -3927,6 +5254,7 @@
|
|
|
3927
5254
|
"ca-central-1" : { },
|
|
3928
5255
|
"eu-central-1" : { },
|
|
3929
5256
|
"eu-north-1" : { },
|
|
5257
|
+
"eu-south-1" : { },
|
|
3930
5258
|
"eu-west-1" : { },
|
|
3931
5259
|
"eu-west-2" : { },
|
|
3932
5260
|
"eu-west-3" : { },
|
|
@@ -3954,6 +5282,30 @@
|
|
|
3954
5282
|
"eu-west-1" : { },
|
|
3955
5283
|
"eu-west-2" : { },
|
|
3956
5284
|
"eu-west-3" : { },
|
|
5285
|
+
"fips-us-east-1" : {
|
|
5286
|
+
"credentialScope" : {
|
|
5287
|
+
"region" : "us-east-1"
|
|
5288
|
+
},
|
|
5289
|
+
"hostname" : "fips.transcribe.us-east-1.amazonaws.com"
|
|
5290
|
+
},
|
|
5291
|
+
"fips-us-east-2" : {
|
|
5292
|
+
"credentialScope" : {
|
|
5293
|
+
"region" : "us-east-2"
|
|
5294
|
+
},
|
|
5295
|
+
"hostname" : "fips.transcribe.us-east-2.amazonaws.com"
|
|
5296
|
+
},
|
|
5297
|
+
"fips-us-west-1" : {
|
|
5298
|
+
"credentialScope" : {
|
|
5299
|
+
"region" : "us-west-1"
|
|
5300
|
+
},
|
|
5301
|
+
"hostname" : "fips.transcribe.us-west-1.amazonaws.com"
|
|
5302
|
+
},
|
|
5303
|
+
"fips-us-west-2" : {
|
|
5304
|
+
"credentialScope" : {
|
|
5305
|
+
"region" : "us-west-2"
|
|
5306
|
+
},
|
|
5307
|
+
"hostname" : "fips.transcribe.us-west-2.amazonaws.com"
|
|
5308
|
+
},
|
|
3957
5309
|
"me-south-1" : { },
|
|
3958
5310
|
"sa-east-1" : { },
|
|
3959
5311
|
"us-east-1" : { },
|
|
@@ -4014,55 +5366,261 @@
|
|
|
4014
5366
|
"credentialScope" : {
|
|
4015
5367
|
"region" : "us-east-1"
|
|
4016
5368
|
},
|
|
4017
|
-
"hostname" : "translate-fips.us-east-1.amazonaws.com"
|
|
5369
|
+
"hostname" : "translate-fips.us-east-1.amazonaws.com"
|
|
5370
|
+
},
|
|
5371
|
+
"us-east-2" : { },
|
|
5372
|
+
"us-east-2-fips" : {
|
|
5373
|
+
"credentialScope" : {
|
|
5374
|
+
"region" : "us-east-2"
|
|
5375
|
+
},
|
|
5376
|
+
"hostname" : "translate-fips.us-east-2.amazonaws.com"
|
|
5377
|
+
},
|
|
5378
|
+
"us-west-1" : { },
|
|
5379
|
+
"us-west-2" : { },
|
|
5380
|
+
"us-west-2-fips" : {
|
|
5381
|
+
"credentialScope" : {
|
|
5382
|
+
"region" : "us-west-2"
|
|
5383
|
+
},
|
|
5384
|
+
"hostname" : "translate-fips.us-west-2.amazonaws.com"
|
|
5385
|
+
}
|
|
5386
|
+
}
|
|
5387
|
+
},
|
|
5388
|
+
"waf" : {
|
|
5389
|
+
"endpoints" : {
|
|
5390
|
+
"aws-fips" : {
|
|
5391
|
+
"credentialScope" : {
|
|
5392
|
+
"region" : "us-east-1"
|
|
5393
|
+
},
|
|
5394
|
+
"hostname" : "waf-fips.amazonaws.com"
|
|
5395
|
+
},
|
|
5396
|
+
"aws-global" : {
|
|
5397
|
+
"credentialScope" : {
|
|
5398
|
+
"region" : "us-east-1"
|
|
5399
|
+
},
|
|
5400
|
+
"hostname" : "waf.amazonaws.com"
|
|
5401
|
+
}
|
|
5402
|
+
},
|
|
5403
|
+
"isRegionalized" : false,
|
|
5404
|
+
"partitionEndpoint" : "aws-global"
|
|
5405
|
+
},
|
|
5406
|
+
"waf-regional" : {
|
|
5407
|
+
"endpoints" : {
|
|
5408
|
+
"ap-east-1" : {
|
|
5409
|
+
"credentialScope" : {
|
|
5410
|
+
"region" : "ap-east-1"
|
|
5411
|
+
},
|
|
5412
|
+
"hostname" : "waf-regional.ap-east-1.amazonaws.com"
|
|
5413
|
+
},
|
|
5414
|
+
"ap-northeast-1" : {
|
|
5415
|
+
"credentialScope" : {
|
|
5416
|
+
"region" : "ap-northeast-1"
|
|
5417
|
+
},
|
|
5418
|
+
"hostname" : "waf-regional.ap-northeast-1.amazonaws.com"
|
|
5419
|
+
},
|
|
5420
|
+
"ap-northeast-2" : {
|
|
5421
|
+
"credentialScope" : {
|
|
5422
|
+
"region" : "ap-northeast-2"
|
|
5423
|
+
},
|
|
5424
|
+
"hostname" : "waf-regional.ap-northeast-2.amazonaws.com"
|
|
5425
|
+
},
|
|
5426
|
+
"ap-south-1" : {
|
|
5427
|
+
"credentialScope" : {
|
|
5428
|
+
"region" : "ap-south-1"
|
|
5429
|
+
},
|
|
5430
|
+
"hostname" : "waf-regional.ap-south-1.amazonaws.com"
|
|
5431
|
+
},
|
|
5432
|
+
"ap-southeast-1" : {
|
|
5433
|
+
"credentialScope" : {
|
|
5434
|
+
"region" : "ap-southeast-1"
|
|
5435
|
+
},
|
|
5436
|
+
"hostname" : "waf-regional.ap-southeast-1.amazonaws.com"
|
|
5437
|
+
},
|
|
5438
|
+
"ap-southeast-2" : {
|
|
5439
|
+
"credentialScope" : {
|
|
5440
|
+
"region" : "ap-southeast-2"
|
|
5441
|
+
},
|
|
5442
|
+
"hostname" : "waf-regional.ap-southeast-2.amazonaws.com"
|
|
5443
|
+
},
|
|
5444
|
+
"ca-central-1" : {
|
|
5445
|
+
"credentialScope" : {
|
|
5446
|
+
"region" : "ca-central-1"
|
|
5447
|
+
},
|
|
5448
|
+
"hostname" : "waf-regional.ca-central-1.amazonaws.com"
|
|
5449
|
+
},
|
|
5450
|
+
"eu-central-1" : {
|
|
5451
|
+
"credentialScope" : {
|
|
5452
|
+
"region" : "eu-central-1"
|
|
5453
|
+
},
|
|
5454
|
+
"hostname" : "waf-regional.eu-central-1.amazonaws.com"
|
|
5455
|
+
},
|
|
5456
|
+
"eu-north-1" : {
|
|
5457
|
+
"credentialScope" : {
|
|
5458
|
+
"region" : "eu-north-1"
|
|
5459
|
+
},
|
|
5460
|
+
"hostname" : "waf-regional.eu-north-1.amazonaws.com"
|
|
5461
|
+
},
|
|
5462
|
+
"eu-west-1" : {
|
|
5463
|
+
"credentialScope" : {
|
|
5464
|
+
"region" : "eu-west-1"
|
|
5465
|
+
},
|
|
5466
|
+
"hostname" : "waf-regional.eu-west-1.amazonaws.com"
|
|
5467
|
+
},
|
|
5468
|
+
"eu-west-2" : {
|
|
5469
|
+
"credentialScope" : {
|
|
5470
|
+
"region" : "eu-west-2"
|
|
5471
|
+
},
|
|
5472
|
+
"hostname" : "waf-regional.eu-west-2.amazonaws.com"
|
|
5473
|
+
},
|
|
5474
|
+
"eu-west-3" : {
|
|
5475
|
+
"credentialScope" : {
|
|
5476
|
+
"region" : "eu-west-3"
|
|
5477
|
+
},
|
|
5478
|
+
"hostname" : "waf-regional.eu-west-3.amazonaws.com"
|
|
5479
|
+
},
|
|
5480
|
+
"fips-ap-east-1" : {
|
|
5481
|
+
"credentialScope" : {
|
|
5482
|
+
"region" : "ap-east-1"
|
|
5483
|
+
},
|
|
5484
|
+
"hostname" : "waf-regional-fips.ap-east-1.amazonaws.com"
|
|
5485
|
+
},
|
|
5486
|
+
"fips-ap-northeast-1" : {
|
|
5487
|
+
"credentialScope" : {
|
|
5488
|
+
"region" : "ap-northeast-1"
|
|
5489
|
+
},
|
|
5490
|
+
"hostname" : "waf-regional-fips.ap-northeast-1.amazonaws.com"
|
|
5491
|
+
},
|
|
5492
|
+
"fips-ap-northeast-2" : {
|
|
5493
|
+
"credentialScope" : {
|
|
5494
|
+
"region" : "ap-northeast-2"
|
|
5495
|
+
},
|
|
5496
|
+
"hostname" : "waf-regional-fips.ap-northeast-2.amazonaws.com"
|
|
5497
|
+
},
|
|
5498
|
+
"fips-ap-south-1" : {
|
|
5499
|
+
"credentialScope" : {
|
|
5500
|
+
"region" : "ap-south-1"
|
|
5501
|
+
},
|
|
5502
|
+
"hostname" : "waf-regional-fips.ap-south-1.amazonaws.com"
|
|
5503
|
+
},
|
|
5504
|
+
"fips-ap-southeast-1" : {
|
|
5505
|
+
"credentialScope" : {
|
|
5506
|
+
"region" : "ap-southeast-1"
|
|
5507
|
+
},
|
|
5508
|
+
"hostname" : "waf-regional-fips.ap-southeast-1.amazonaws.com"
|
|
5509
|
+
},
|
|
5510
|
+
"fips-ap-southeast-2" : {
|
|
5511
|
+
"credentialScope" : {
|
|
5512
|
+
"region" : "ap-southeast-2"
|
|
5513
|
+
},
|
|
5514
|
+
"hostname" : "waf-regional-fips.ap-southeast-2.amazonaws.com"
|
|
5515
|
+
},
|
|
5516
|
+
"fips-ca-central-1" : {
|
|
5517
|
+
"credentialScope" : {
|
|
5518
|
+
"region" : "ca-central-1"
|
|
5519
|
+
},
|
|
5520
|
+
"hostname" : "waf-regional-fips.ca-central-1.amazonaws.com"
|
|
5521
|
+
},
|
|
5522
|
+
"fips-eu-central-1" : {
|
|
5523
|
+
"credentialScope" : {
|
|
5524
|
+
"region" : "eu-central-1"
|
|
5525
|
+
},
|
|
5526
|
+
"hostname" : "waf-regional-fips.eu-central-1.amazonaws.com"
|
|
5527
|
+
},
|
|
5528
|
+
"fips-eu-north-1" : {
|
|
5529
|
+
"credentialScope" : {
|
|
5530
|
+
"region" : "eu-north-1"
|
|
5531
|
+
},
|
|
5532
|
+
"hostname" : "waf-regional-fips.eu-north-1.amazonaws.com"
|
|
5533
|
+
},
|
|
5534
|
+
"fips-eu-west-1" : {
|
|
5535
|
+
"credentialScope" : {
|
|
5536
|
+
"region" : "eu-west-1"
|
|
5537
|
+
},
|
|
5538
|
+
"hostname" : "waf-regional-fips.eu-west-1.amazonaws.com"
|
|
5539
|
+
},
|
|
5540
|
+
"fips-eu-west-2" : {
|
|
5541
|
+
"credentialScope" : {
|
|
5542
|
+
"region" : "eu-west-2"
|
|
5543
|
+
},
|
|
5544
|
+
"hostname" : "waf-regional-fips.eu-west-2.amazonaws.com"
|
|
5545
|
+
},
|
|
5546
|
+
"fips-eu-west-3" : {
|
|
5547
|
+
"credentialScope" : {
|
|
5548
|
+
"region" : "eu-west-3"
|
|
5549
|
+
},
|
|
5550
|
+
"hostname" : "waf-regional-fips.eu-west-3.amazonaws.com"
|
|
5551
|
+
},
|
|
5552
|
+
"fips-me-south-1" : {
|
|
5553
|
+
"credentialScope" : {
|
|
5554
|
+
"region" : "me-south-1"
|
|
5555
|
+
},
|
|
5556
|
+
"hostname" : "waf-regional-fips.me-south-1.amazonaws.com"
|
|
5557
|
+
},
|
|
5558
|
+
"fips-sa-east-1" : {
|
|
5559
|
+
"credentialScope" : {
|
|
5560
|
+
"region" : "sa-east-1"
|
|
5561
|
+
},
|
|
5562
|
+
"hostname" : "waf-regional-fips.sa-east-1.amazonaws.com"
|
|
5563
|
+
},
|
|
5564
|
+
"fips-us-east-1" : {
|
|
5565
|
+
"credentialScope" : {
|
|
5566
|
+
"region" : "us-east-1"
|
|
5567
|
+
},
|
|
5568
|
+
"hostname" : "waf-regional-fips.us-east-1.amazonaws.com"
|
|
4018
5569
|
},
|
|
4019
|
-
"us-east-2" : {
|
|
4020
|
-
"us-east-2-fips" : {
|
|
5570
|
+
"fips-us-east-2" : {
|
|
4021
5571
|
"credentialScope" : {
|
|
4022
5572
|
"region" : "us-east-2"
|
|
4023
5573
|
},
|
|
4024
|
-
"hostname" : "
|
|
5574
|
+
"hostname" : "waf-regional-fips.us-east-2.amazonaws.com"
|
|
4025
5575
|
},
|
|
4026
|
-
"us-west-1" : {
|
|
4027
|
-
|
|
4028
|
-
|
|
5576
|
+
"fips-us-west-1" : {
|
|
5577
|
+
"credentialScope" : {
|
|
5578
|
+
"region" : "us-west-1"
|
|
5579
|
+
},
|
|
5580
|
+
"hostname" : "waf-regional-fips.us-west-1.amazonaws.com"
|
|
5581
|
+
},
|
|
5582
|
+
"fips-us-west-2" : {
|
|
4029
5583
|
"credentialScope" : {
|
|
4030
5584
|
"region" : "us-west-2"
|
|
4031
5585
|
},
|
|
4032
|
-
"hostname" : "
|
|
4033
|
-
}
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
|
|
5586
|
+
"hostname" : "waf-regional-fips.us-west-2.amazonaws.com"
|
|
5587
|
+
},
|
|
5588
|
+
"me-south-1" : {
|
|
5589
|
+
"credentialScope" : {
|
|
5590
|
+
"region" : "me-south-1"
|
|
5591
|
+
},
|
|
5592
|
+
"hostname" : "waf-regional.me-south-1.amazonaws.com"
|
|
5593
|
+
},
|
|
5594
|
+
"sa-east-1" : {
|
|
5595
|
+
"credentialScope" : {
|
|
5596
|
+
"region" : "sa-east-1"
|
|
5597
|
+
},
|
|
5598
|
+
"hostname" : "waf-regional.sa-east-1.amazonaws.com"
|
|
5599
|
+
},
|
|
5600
|
+
"us-east-1" : {
|
|
4039
5601
|
"credentialScope" : {
|
|
4040
5602
|
"region" : "us-east-1"
|
|
4041
5603
|
},
|
|
4042
|
-
"hostname" : "waf.amazonaws.com"
|
|
5604
|
+
"hostname" : "waf-regional.us-east-1.amazonaws.com"
|
|
5605
|
+
},
|
|
5606
|
+
"us-east-2" : {
|
|
5607
|
+
"credentialScope" : {
|
|
5608
|
+
"region" : "us-east-2"
|
|
5609
|
+
},
|
|
5610
|
+
"hostname" : "waf-regional.us-east-2.amazonaws.com"
|
|
5611
|
+
},
|
|
5612
|
+
"us-west-1" : {
|
|
5613
|
+
"credentialScope" : {
|
|
5614
|
+
"region" : "us-west-1"
|
|
5615
|
+
},
|
|
5616
|
+
"hostname" : "waf-regional.us-west-1.amazonaws.com"
|
|
5617
|
+
},
|
|
5618
|
+
"us-west-2" : {
|
|
5619
|
+
"credentialScope" : {
|
|
5620
|
+
"region" : "us-west-2"
|
|
5621
|
+
},
|
|
5622
|
+
"hostname" : "waf-regional.us-west-2.amazonaws.com"
|
|
4043
5623
|
}
|
|
4044
|
-
},
|
|
4045
|
-
"isRegionalized" : false,
|
|
4046
|
-
"partitionEndpoint" : "aws-global"
|
|
4047
|
-
},
|
|
4048
|
-
"waf-regional" : {
|
|
4049
|
-
"endpoints" : {
|
|
4050
|
-
"ap-northeast-1" : { },
|
|
4051
|
-
"ap-northeast-2" : { },
|
|
4052
|
-
"ap-south-1" : { },
|
|
4053
|
-
"ap-southeast-1" : { },
|
|
4054
|
-
"ap-southeast-2" : { },
|
|
4055
|
-
"ca-central-1" : { },
|
|
4056
|
-
"eu-central-1" : { },
|
|
4057
|
-
"eu-north-1" : { },
|
|
4058
|
-
"eu-west-1" : { },
|
|
4059
|
-
"eu-west-2" : { },
|
|
4060
|
-
"eu-west-3" : { },
|
|
4061
|
-
"sa-east-1" : { },
|
|
4062
|
-
"us-east-1" : { },
|
|
4063
|
-
"us-east-2" : { },
|
|
4064
|
-
"us-west-1" : { },
|
|
4065
|
-
"us-west-2" : { }
|
|
4066
5624
|
}
|
|
4067
5625
|
},
|
|
4068
5626
|
"workdocs" : {
|
|
@@ -4071,6 +5629,18 @@
|
|
|
4071
5629
|
"ap-southeast-1" : { },
|
|
4072
5630
|
"ap-southeast-2" : { },
|
|
4073
5631
|
"eu-west-1" : { },
|
|
5632
|
+
"fips-us-east-1" : {
|
|
5633
|
+
"credentialScope" : {
|
|
5634
|
+
"region" : "us-east-1"
|
|
5635
|
+
},
|
|
5636
|
+
"hostname" : "workdocs-fips.us-east-1.amazonaws.com"
|
|
5637
|
+
},
|
|
5638
|
+
"fips-us-west-2" : {
|
|
5639
|
+
"credentialScope" : {
|
|
5640
|
+
"region" : "us-west-2"
|
|
5641
|
+
},
|
|
5642
|
+
"hostname" : "workdocs-fips.us-west-2.amazonaws.com"
|
|
5643
|
+
},
|
|
4074
5644
|
"us-east-1" : { },
|
|
4075
5645
|
"us-west-2" : { }
|
|
4076
5646
|
}
|
|
@@ -4102,6 +5672,7 @@
|
|
|
4102
5672
|
},
|
|
4103
5673
|
"xray" : {
|
|
4104
5674
|
"endpoints" : {
|
|
5675
|
+
"af-south-1" : { },
|
|
4105
5676
|
"ap-east-1" : { },
|
|
4106
5677
|
"ap-northeast-1" : { },
|
|
4107
5678
|
"ap-northeast-2" : { },
|
|
@@ -4111,6 +5682,7 @@
|
|
|
4111
5682
|
"ca-central-1" : { },
|
|
4112
5683
|
"eu-central-1" : { },
|
|
4113
5684
|
"eu-north-1" : { },
|
|
5685
|
+
"eu-south-1" : { },
|
|
4114
5686
|
"eu-west-1" : { },
|
|
4115
5687
|
"eu-west-2" : { },
|
|
4116
5688
|
"eu-west-3" : { },
|
|
@@ -4164,6 +5736,12 @@
|
|
|
4164
5736
|
}
|
|
4165
5737
|
}
|
|
4166
5738
|
},
|
|
5739
|
+
"api.sagemaker" : {
|
|
5740
|
+
"endpoints" : {
|
|
5741
|
+
"cn-north-1" : { },
|
|
5742
|
+
"cn-northwest-1" : { }
|
|
5743
|
+
}
|
|
5744
|
+
},
|
|
4167
5745
|
"apigateway" : {
|
|
4168
5746
|
"endpoints" : {
|
|
4169
5747
|
"cn-north-1" : { },
|
|
@@ -4186,6 +5764,7 @@
|
|
|
4186
5764
|
},
|
|
4187
5765
|
"athena" : {
|
|
4188
5766
|
"endpoints" : {
|
|
5767
|
+
"cn-north-1" : { },
|
|
4189
5768
|
"cn-northwest-1" : { }
|
|
4190
5769
|
}
|
|
4191
5770
|
},
|
|
@@ -4241,6 +5820,12 @@
|
|
|
4241
5820
|
"cn-northwest-1" : { }
|
|
4242
5821
|
}
|
|
4243
5822
|
},
|
|
5823
|
+
"codecommit" : {
|
|
5824
|
+
"endpoints" : {
|
|
5825
|
+
"cn-north-1" : { },
|
|
5826
|
+
"cn-northwest-1" : { }
|
|
5827
|
+
}
|
|
5828
|
+
},
|
|
4244
5829
|
"codedeploy" : {
|
|
4245
5830
|
"endpoints" : {
|
|
4246
5831
|
"cn-north-1" : { },
|
|
@@ -4332,7 +5917,19 @@
|
|
|
4332
5917
|
"elasticfilesystem" : {
|
|
4333
5918
|
"endpoints" : {
|
|
4334
5919
|
"cn-north-1" : { },
|
|
4335
|
-
"cn-northwest-1" : { }
|
|
5920
|
+
"cn-northwest-1" : { },
|
|
5921
|
+
"fips-cn-north-1" : {
|
|
5922
|
+
"credentialScope" : {
|
|
5923
|
+
"region" : "cn-north-1"
|
|
5924
|
+
},
|
|
5925
|
+
"hostname" : "elasticfilesystem-fips.cn-north-1.amazonaws.com.cn"
|
|
5926
|
+
},
|
|
5927
|
+
"fips-cn-northwest-1" : {
|
|
5928
|
+
"credentialScope" : {
|
|
5929
|
+
"region" : "cn-northwest-1"
|
|
5930
|
+
},
|
|
5931
|
+
"hostname" : "elasticfilesystem-fips.cn-northwest-1.amazonaws.com.cn"
|
|
5932
|
+
}
|
|
4336
5933
|
}
|
|
4337
5934
|
},
|
|
4338
5935
|
"elasticloadbalancing" : {
|
|
@@ -4387,6 +5984,7 @@
|
|
|
4387
5984
|
},
|
|
4388
5985
|
"glue" : {
|
|
4389
5986
|
"endpoints" : {
|
|
5987
|
+
"cn-north-1" : { },
|
|
4390
5988
|
"cn-northwest-1" : { }
|
|
4391
5989
|
}
|
|
4392
5990
|
},
|
|
@@ -4428,6 +6026,18 @@
|
|
|
4428
6026
|
"cn-northwest-1" : { }
|
|
4429
6027
|
}
|
|
4430
6028
|
},
|
|
6029
|
+
"iotsecuredtunneling" : {
|
|
6030
|
+
"endpoints" : {
|
|
6031
|
+
"cn-north-1" : { },
|
|
6032
|
+
"cn-northwest-1" : { }
|
|
6033
|
+
}
|
|
6034
|
+
},
|
|
6035
|
+
"kafka" : {
|
|
6036
|
+
"endpoints" : {
|
|
6037
|
+
"cn-north-1" : { },
|
|
6038
|
+
"cn-northwest-1" : { }
|
|
6039
|
+
}
|
|
6040
|
+
},
|
|
4431
6041
|
"kinesis" : {
|
|
4432
6042
|
"endpoints" : {
|
|
4433
6043
|
"cn-north-1" : { },
|
|
@@ -4504,6 +6114,12 @@
|
|
|
4504
6114
|
"cn-northwest-1" : { }
|
|
4505
6115
|
}
|
|
4506
6116
|
},
|
|
6117
|
+
"runtime.sagemaker" : {
|
|
6118
|
+
"endpoints" : {
|
|
6119
|
+
"cn-north-1" : { },
|
|
6120
|
+
"cn-northwest-1" : { }
|
|
6121
|
+
}
|
|
6122
|
+
},
|
|
4507
6123
|
"s3" : {
|
|
4508
6124
|
"defaults" : {
|
|
4509
6125
|
"protocols" : [ "http", "https" ],
|
|
@@ -4563,7 +6179,13 @@
|
|
|
4563
6179
|
},
|
|
4564
6180
|
"snowball" : {
|
|
4565
6181
|
"endpoints" : {
|
|
4566
|
-
"cn-north-1" : { }
|
|
6182
|
+
"cn-north-1" : { },
|
|
6183
|
+
"fips-cn-north-1" : {
|
|
6184
|
+
"credentialScope" : {
|
|
6185
|
+
"region" : "cn-north-1"
|
|
6186
|
+
},
|
|
6187
|
+
"hostname" : "snowball-fips.cn-north-1.amazonaws.com.cn"
|
|
6188
|
+
}
|
|
4567
6189
|
}
|
|
4568
6190
|
},
|
|
4569
6191
|
"sns" : {
|
|
@@ -4711,12 +6333,36 @@
|
|
|
4711
6333
|
"protocols" : [ "https" ]
|
|
4712
6334
|
},
|
|
4713
6335
|
"endpoints" : {
|
|
6336
|
+
"fips-us-gov-east-1" : {
|
|
6337
|
+
"credentialScope" : {
|
|
6338
|
+
"region" : "us-gov-east-1"
|
|
6339
|
+
},
|
|
6340
|
+
"hostname" : "acm-pca.us-gov-east-1.amazonaws.com"
|
|
6341
|
+
},
|
|
6342
|
+
"fips-us-gov-west-1" : {
|
|
6343
|
+
"credentialScope" : {
|
|
6344
|
+
"region" : "us-gov-west-1"
|
|
6345
|
+
},
|
|
6346
|
+
"hostname" : "acm-pca.us-gov-west-1.amazonaws.com"
|
|
6347
|
+
},
|
|
4714
6348
|
"us-gov-east-1" : { },
|
|
4715
6349
|
"us-gov-west-1" : { }
|
|
4716
6350
|
}
|
|
4717
6351
|
},
|
|
4718
6352
|
"api.ecr" : {
|
|
4719
6353
|
"endpoints" : {
|
|
6354
|
+
"fips-us-gov-east-1" : {
|
|
6355
|
+
"credentialScope" : {
|
|
6356
|
+
"region" : "us-gov-east-1"
|
|
6357
|
+
},
|
|
6358
|
+
"hostname" : "ecr-fips.us-gov-east-1.amazonaws.com"
|
|
6359
|
+
},
|
|
6360
|
+
"fips-us-gov-west-1" : {
|
|
6361
|
+
"credentialScope" : {
|
|
6362
|
+
"region" : "us-gov-west-1"
|
|
6363
|
+
},
|
|
6364
|
+
"hostname" : "ecr-fips.us-gov-west-1.amazonaws.com"
|
|
6365
|
+
},
|
|
4720
6366
|
"us-gov-east-1" : {
|
|
4721
6367
|
"credentialScope" : {
|
|
4722
6368
|
"region" : "us-gov-east-1"
|
|
@@ -4770,6 +6416,18 @@
|
|
|
4770
6416
|
},
|
|
4771
6417
|
"athena" : {
|
|
4772
6418
|
"endpoints" : {
|
|
6419
|
+
"fips-us-gov-east-1" : {
|
|
6420
|
+
"credentialScope" : {
|
|
6421
|
+
"region" : "us-gov-east-1"
|
|
6422
|
+
},
|
|
6423
|
+
"hostname" : "athena-fips.us-gov-east-1.amazonaws.com"
|
|
6424
|
+
},
|
|
6425
|
+
"fips-us-gov-west-1" : {
|
|
6426
|
+
"credentialScope" : {
|
|
6427
|
+
"region" : "us-gov-west-1"
|
|
6428
|
+
},
|
|
6429
|
+
"hostname" : "athena-fips.us-gov-west-1.amazonaws.com"
|
|
6430
|
+
},
|
|
4773
6431
|
"us-gov-east-1" : { },
|
|
4774
6432
|
"us-gov-west-1" : { }
|
|
4775
6433
|
}
|
|
@@ -4793,6 +6451,18 @@
|
|
|
4793
6451
|
},
|
|
4794
6452
|
"batch" : {
|
|
4795
6453
|
"endpoints" : {
|
|
6454
|
+
"fips-us-gov-east-1" : {
|
|
6455
|
+
"credentialScope" : {
|
|
6456
|
+
"region" : "us-gov-east-1"
|
|
6457
|
+
},
|
|
6458
|
+
"hostname" : "batch.us-gov-east-1.amazonaws.com"
|
|
6459
|
+
},
|
|
6460
|
+
"fips-us-gov-west-1" : {
|
|
6461
|
+
"credentialScope" : {
|
|
6462
|
+
"region" : "us-gov-west-1"
|
|
6463
|
+
},
|
|
6464
|
+
"hostname" : "batch.us-gov-west-1.amazonaws.com"
|
|
6465
|
+
},
|
|
4796
6466
|
"us-gov-east-1" : { },
|
|
4797
6467
|
"us-gov-west-1" : { }
|
|
4798
6468
|
}
|
|
@@ -4833,11 +6503,29 @@
|
|
|
4833
6503
|
"codebuild" : {
|
|
4834
6504
|
"endpoints" : {
|
|
4835
6505
|
"us-gov-east-1" : { },
|
|
4836
|
-
"us-gov-
|
|
6506
|
+
"us-gov-east-1-fips" : {
|
|
6507
|
+
"credentialScope" : {
|
|
6508
|
+
"region" : "us-gov-east-1"
|
|
6509
|
+
},
|
|
6510
|
+
"hostname" : "codebuild-fips.us-gov-east-1.amazonaws.com"
|
|
6511
|
+
},
|
|
6512
|
+
"us-gov-west-1" : { },
|
|
6513
|
+
"us-gov-west-1-fips" : {
|
|
6514
|
+
"credentialScope" : {
|
|
6515
|
+
"region" : "us-gov-west-1"
|
|
6516
|
+
},
|
|
6517
|
+
"hostname" : "codebuild-fips.us-gov-west-1.amazonaws.com"
|
|
6518
|
+
}
|
|
4837
6519
|
}
|
|
4838
6520
|
},
|
|
4839
6521
|
"codecommit" : {
|
|
4840
6522
|
"endpoints" : {
|
|
6523
|
+
"fips" : {
|
|
6524
|
+
"credentialScope" : {
|
|
6525
|
+
"region" : "us-gov-west-1"
|
|
6526
|
+
},
|
|
6527
|
+
"hostname" : "codecommit-fips.us-gov-west-1.amazonaws.com"
|
|
6528
|
+
},
|
|
4841
6529
|
"us-gov-east-1" : { },
|
|
4842
6530
|
"us-gov-west-1" : { }
|
|
4843
6531
|
}
|
|
@@ -4860,11 +6548,28 @@
|
|
|
4860
6548
|
}
|
|
4861
6549
|
}
|
|
4862
6550
|
},
|
|
6551
|
+
"codepipeline" : {
|
|
6552
|
+
"endpoints" : {
|
|
6553
|
+
"fips-us-gov-west-1" : {
|
|
6554
|
+
"credentialScope" : {
|
|
6555
|
+
"region" : "us-gov-west-1"
|
|
6556
|
+
},
|
|
6557
|
+
"hostname" : "codepipeline-fips.us-gov-west-1.amazonaws.com"
|
|
6558
|
+
},
|
|
6559
|
+
"us-gov-west-1" : { }
|
|
6560
|
+
}
|
|
6561
|
+
},
|
|
4863
6562
|
"comprehend" : {
|
|
4864
6563
|
"defaults" : {
|
|
4865
6564
|
"protocols" : [ "https" ]
|
|
4866
6565
|
},
|
|
4867
6566
|
"endpoints" : {
|
|
6567
|
+
"fips-us-gov-west-1" : {
|
|
6568
|
+
"credentialScope" : {
|
|
6569
|
+
"region" : "us-gov-west-1"
|
|
6570
|
+
},
|
|
6571
|
+
"hostname" : "comprehend-fips.us-gov-west-1.amazonaws.com"
|
|
6572
|
+
},
|
|
4868
6573
|
"us-gov-west-1" : { }
|
|
4869
6574
|
}
|
|
4870
6575
|
},
|
|
@@ -4892,6 +6597,12 @@
|
|
|
4892
6597
|
},
|
|
4893
6598
|
"datasync" : {
|
|
4894
6599
|
"endpoints" : {
|
|
6600
|
+
"fips-us-gov-east-1" : {
|
|
6601
|
+
"credentialScope" : {
|
|
6602
|
+
"region" : "us-gov-east-1"
|
|
6603
|
+
},
|
|
6604
|
+
"hostname" : "datasync-fips.us-gov-east-1.amazonaws.com"
|
|
6605
|
+
},
|
|
4895
6606
|
"fips-us-gov-west-1" : {
|
|
4896
6607
|
"credentialScope" : {
|
|
4897
6608
|
"region" : "us-gov-west-1"
|
|
@@ -4904,18 +6615,46 @@
|
|
|
4904
6615
|
},
|
|
4905
6616
|
"directconnect" : {
|
|
4906
6617
|
"endpoints" : {
|
|
4907
|
-
"us-gov-east-1" : {
|
|
4908
|
-
|
|
6618
|
+
"us-gov-east-1" : {
|
|
6619
|
+
"credentialScope" : {
|
|
6620
|
+
"region" : "us-gov-east-1"
|
|
6621
|
+
},
|
|
6622
|
+
"hostname" : "directconnect.us-gov-east-1.amazonaws.com"
|
|
6623
|
+
},
|
|
6624
|
+
"us-gov-west-1" : {
|
|
6625
|
+
"credentialScope" : {
|
|
6626
|
+
"region" : "us-gov-west-1"
|
|
6627
|
+
},
|
|
6628
|
+
"hostname" : "directconnect.us-gov-west-1.amazonaws.com"
|
|
6629
|
+
}
|
|
4909
6630
|
}
|
|
4910
6631
|
},
|
|
4911
6632
|
"dms" : {
|
|
4912
6633
|
"endpoints" : {
|
|
6634
|
+
"dms-fips" : {
|
|
6635
|
+
"credentialScope" : {
|
|
6636
|
+
"region" : "us-gov-west-1"
|
|
6637
|
+
},
|
|
6638
|
+
"hostname" : "dms.us-gov-west-1.amazonaws.com"
|
|
6639
|
+
},
|
|
4913
6640
|
"us-gov-east-1" : { },
|
|
4914
6641
|
"us-gov-west-1" : { }
|
|
4915
6642
|
}
|
|
4916
6643
|
},
|
|
4917
6644
|
"ds" : {
|
|
4918
6645
|
"endpoints" : {
|
|
6646
|
+
"fips-us-gov-east-1" : {
|
|
6647
|
+
"credentialScope" : {
|
|
6648
|
+
"region" : "us-gov-east-1"
|
|
6649
|
+
},
|
|
6650
|
+
"hostname" : "ds-fips.us-gov-east-1.amazonaws.com"
|
|
6651
|
+
},
|
|
6652
|
+
"fips-us-gov-west-1" : {
|
|
6653
|
+
"credentialScope" : {
|
|
6654
|
+
"region" : "us-gov-west-1"
|
|
6655
|
+
},
|
|
6656
|
+
"hostname" : "ds-fips.us-gov-west-1.amazonaws.com"
|
|
6657
|
+
},
|
|
4919
6658
|
"us-gov-east-1" : { },
|
|
4920
6659
|
"us-gov-west-1" : { }
|
|
4921
6660
|
}
|
|
@@ -4929,23 +6668,45 @@
|
|
|
4929
6668
|
},
|
|
4930
6669
|
"hostname" : "dynamodb.us-gov-east-1.amazonaws.com"
|
|
4931
6670
|
},
|
|
4932
|
-
"us-gov-west-1" : { },
|
|
4933
|
-
"us-gov-west-1-fips" : {
|
|
6671
|
+
"us-gov-west-1" : { },
|
|
6672
|
+
"us-gov-west-1-fips" : {
|
|
6673
|
+
"credentialScope" : {
|
|
6674
|
+
"region" : "us-gov-west-1"
|
|
6675
|
+
},
|
|
6676
|
+
"hostname" : "dynamodb.us-gov-west-1.amazonaws.com"
|
|
6677
|
+
}
|
|
6678
|
+
}
|
|
6679
|
+
},
|
|
6680
|
+
"ec2" : {
|
|
6681
|
+
"endpoints" : {
|
|
6682
|
+
"us-gov-east-1" : {
|
|
6683
|
+
"credentialScope" : {
|
|
6684
|
+
"region" : "us-gov-east-1"
|
|
6685
|
+
},
|
|
6686
|
+
"hostname" : "ec2.us-gov-east-1.amazonaws.com"
|
|
6687
|
+
},
|
|
6688
|
+
"us-gov-west-1" : {
|
|
4934
6689
|
"credentialScope" : {
|
|
4935
6690
|
"region" : "us-gov-west-1"
|
|
4936
6691
|
},
|
|
4937
|
-
"hostname" : "
|
|
6692
|
+
"hostname" : "ec2.us-gov-west-1.amazonaws.com"
|
|
4938
6693
|
}
|
|
4939
6694
|
}
|
|
4940
6695
|
},
|
|
4941
|
-
"ec2" : {
|
|
4942
|
-
"endpoints" : {
|
|
4943
|
-
"us-gov-east-1" : { },
|
|
4944
|
-
"us-gov-west-1" : { }
|
|
4945
|
-
}
|
|
4946
|
-
},
|
|
4947
6696
|
"ecs" : {
|
|
4948
6697
|
"endpoints" : {
|
|
6698
|
+
"fips-us-gov-east-1" : {
|
|
6699
|
+
"credentialScope" : {
|
|
6700
|
+
"region" : "us-gov-east-1"
|
|
6701
|
+
},
|
|
6702
|
+
"hostname" : "ecs-fips.us-gov-east-1.amazonaws.com"
|
|
6703
|
+
},
|
|
6704
|
+
"fips-us-gov-west-1" : {
|
|
6705
|
+
"credentialScope" : {
|
|
6706
|
+
"region" : "us-gov-west-1"
|
|
6707
|
+
},
|
|
6708
|
+
"hostname" : "ecs-fips.us-gov-west-1.amazonaws.com"
|
|
6709
|
+
},
|
|
4949
6710
|
"us-gov-east-1" : { },
|
|
4950
6711
|
"us-gov-west-1" : { }
|
|
4951
6712
|
}
|
|
@@ -4964,12 +6725,34 @@
|
|
|
4964
6725
|
},
|
|
4965
6726
|
"elasticbeanstalk" : {
|
|
4966
6727
|
"endpoints" : {
|
|
4967
|
-
"us-gov-east-1" : {
|
|
4968
|
-
|
|
6728
|
+
"us-gov-east-1" : {
|
|
6729
|
+
"credentialScope" : {
|
|
6730
|
+
"region" : "us-gov-east-1"
|
|
6731
|
+
},
|
|
6732
|
+
"hostname" : "elasticbeanstalk.us-gov-east-1.amazonaws.com"
|
|
6733
|
+
},
|
|
6734
|
+
"us-gov-west-1" : {
|
|
6735
|
+
"credentialScope" : {
|
|
6736
|
+
"region" : "us-gov-west-1"
|
|
6737
|
+
},
|
|
6738
|
+
"hostname" : "elasticbeanstalk.us-gov-west-1.amazonaws.com"
|
|
6739
|
+
}
|
|
4969
6740
|
}
|
|
4970
6741
|
},
|
|
4971
6742
|
"elasticfilesystem" : {
|
|
4972
6743
|
"endpoints" : {
|
|
6744
|
+
"fips-us-gov-east-1" : {
|
|
6745
|
+
"credentialScope" : {
|
|
6746
|
+
"region" : "us-gov-east-1"
|
|
6747
|
+
},
|
|
6748
|
+
"hostname" : "elasticfilesystem-fips.us-gov-east-1.amazonaws.com"
|
|
6749
|
+
},
|
|
6750
|
+
"fips-us-gov-west-1" : {
|
|
6751
|
+
"credentialScope" : {
|
|
6752
|
+
"region" : "us-gov-west-1"
|
|
6753
|
+
},
|
|
6754
|
+
"hostname" : "elasticfilesystem-fips.us-gov-west-1.amazonaws.com"
|
|
6755
|
+
},
|
|
4973
6756
|
"us-gov-east-1" : { },
|
|
4974
6757
|
"us-gov-west-1" : { }
|
|
4975
6758
|
}
|
|
@@ -4990,6 +6773,17 @@
|
|
|
4990
6773
|
}
|
|
4991
6774
|
}
|
|
4992
6775
|
},
|
|
6776
|
+
"email" : {
|
|
6777
|
+
"endpoints" : {
|
|
6778
|
+
"fips-us-gov-west-1" : {
|
|
6779
|
+
"credentialScope" : {
|
|
6780
|
+
"region" : "us-gov-west-1"
|
|
6781
|
+
},
|
|
6782
|
+
"hostname" : "email-fips.us-gov-west-1.amazonaws.com"
|
|
6783
|
+
},
|
|
6784
|
+
"us-gov-west-1" : { }
|
|
6785
|
+
}
|
|
6786
|
+
},
|
|
4993
6787
|
"es" : {
|
|
4994
6788
|
"endpoints" : {
|
|
4995
6789
|
"fips" : {
|
|
@@ -5010,20 +6804,53 @@
|
|
|
5010
6804
|
},
|
|
5011
6805
|
"firehose" : {
|
|
5012
6806
|
"endpoints" : {
|
|
6807
|
+
"fips-us-gov-east-1" : {
|
|
6808
|
+
"credentialScope" : {
|
|
6809
|
+
"region" : "us-gov-east-1"
|
|
6810
|
+
},
|
|
6811
|
+
"hostname" : "firehose-fips.us-gov-east-1.amazonaws.com"
|
|
6812
|
+
},
|
|
6813
|
+
"fips-us-gov-west-1" : {
|
|
6814
|
+
"credentialScope" : {
|
|
6815
|
+
"region" : "us-gov-west-1"
|
|
6816
|
+
},
|
|
6817
|
+
"hostname" : "firehose-fips.us-gov-west-1.amazonaws.com"
|
|
6818
|
+
},
|
|
5013
6819
|
"us-gov-east-1" : { },
|
|
5014
6820
|
"us-gov-west-1" : { }
|
|
5015
6821
|
}
|
|
5016
6822
|
},
|
|
5017
6823
|
"glacier" : {
|
|
5018
6824
|
"endpoints" : {
|
|
5019
|
-
"us-gov-east-1" : {
|
|
6825
|
+
"us-gov-east-1" : {
|
|
6826
|
+
"credentialScope" : {
|
|
6827
|
+
"region" : "us-gov-east-1"
|
|
6828
|
+
},
|
|
6829
|
+
"hostname" : "glacier.us-gov-east-1.amazonaws.com"
|
|
6830
|
+
},
|
|
5020
6831
|
"us-gov-west-1" : {
|
|
6832
|
+
"credentialScope" : {
|
|
6833
|
+
"region" : "us-gov-west-1"
|
|
6834
|
+
},
|
|
6835
|
+
"hostname" : "glacier.us-gov-west-1.amazonaws.com",
|
|
5021
6836
|
"protocols" : [ "http", "https" ]
|
|
5022
6837
|
}
|
|
5023
6838
|
}
|
|
5024
6839
|
},
|
|
5025
6840
|
"glue" : {
|
|
5026
6841
|
"endpoints" : {
|
|
6842
|
+
"fips-us-gov-east-1" : {
|
|
6843
|
+
"credentialScope" : {
|
|
6844
|
+
"region" : "us-gov-east-1"
|
|
6845
|
+
},
|
|
6846
|
+
"hostname" : "glue-fips.us-gov-east-1.amazonaws.com"
|
|
6847
|
+
},
|
|
6848
|
+
"fips-us-gov-west-1" : {
|
|
6849
|
+
"credentialScope" : {
|
|
6850
|
+
"region" : "us-gov-west-1"
|
|
6851
|
+
},
|
|
6852
|
+
"hostname" : "glue-fips.us-gov-west-1.amazonaws.com"
|
|
6853
|
+
},
|
|
5027
6854
|
"us-gov-east-1" : { },
|
|
5028
6855
|
"us-gov-west-1" : { }
|
|
5029
6856
|
}
|
|
@@ -5065,6 +6892,18 @@
|
|
|
5065
6892
|
},
|
|
5066
6893
|
"inspector" : {
|
|
5067
6894
|
"endpoints" : {
|
|
6895
|
+
"fips-us-gov-east-1" : {
|
|
6896
|
+
"credentialScope" : {
|
|
6897
|
+
"region" : "us-gov-east-1"
|
|
6898
|
+
},
|
|
6899
|
+
"hostname" : "inspector-fips.us-gov-east-1.amazonaws.com"
|
|
6900
|
+
},
|
|
6901
|
+
"fips-us-gov-west-1" : {
|
|
6902
|
+
"credentialScope" : {
|
|
6903
|
+
"region" : "us-gov-west-1"
|
|
6904
|
+
},
|
|
6905
|
+
"hostname" : "inspector-fips.us-gov-west-1.amazonaws.com"
|
|
6906
|
+
},
|
|
5068
6907
|
"us-gov-east-1" : { },
|
|
5069
6908
|
"us-gov-west-1" : { }
|
|
5070
6909
|
}
|
|
@@ -5079,6 +6918,11 @@
|
|
|
5079
6918
|
"us-gov-west-1" : { }
|
|
5080
6919
|
}
|
|
5081
6920
|
},
|
|
6921
|
+
"iotsecuredtunneling" : {
|
|
6922
|
+
"endpoints" : {
|
|
6923
|
+
"us-gov-west-1" : { }
|
|
6924
|
+
}
|
|
6925
|
+
},
|
|
5082
6926
|
"kinesis" : {
|
|
5083
6927
|
"endpoints" : {
|
|
5084
6928
|
"us-gov-east-1" : { },
|
|
@@ -5099,12 +6943,36 @@
|
|
|
5099
6943
|
},
|
|
5100
6944
|
"lambda" : {
|
|
5101
6945
|
"endpoints" : {
|
|
6946
|
+
"fips-us-gov-east-1" : {
|
|
6947
|
+
"credentialScope" : {
|
|
6948
|
+
"region" : "us-gov-east-1"
|
|
6949
|
+
},
|
|
6950
|
+
"hostname" : "lambda-fips.us-gov-east-1.amazonaws.com"
|
|
6951
|
+
},
|
|
6952
|
+
"fips-us-gov-west-1" : {
|
|
6953
|
+
"credentialScope" : {
|
|
6954
|
+
"region" : "us-gov-west-1"
|
|
6955
|
+
},
|
|
6956
|
+
"hostname" : "lambda-fips.us-gov-west-1.amazonaws.com"
|
|
6957
|
+
},
|
|
5102
6958
|
"us-gov-east-1" : { },
|
|
5103
6959
|
"us-gov-west-1" : { }
|
|
5104
6960
|
}
|
|
5105
6961
|
},
|
|
5106
6962
|
"license-manager" : {
|
|
5107
6963
|
"endpoints" : {
|
|
6964
|
+
"fips-us-gov-east-1" : {
|
|
6965
|
+
"credentialScope" : {
|
|
6966
|
+
"region" : "us-gov-east-1"
|
|
6967
|
+
},
|
|
6968
|
+
"hostname" : "license-manager-fips.us-gov-east-1.amazonaws.com"
|
|
6969
|
+
},
|
|
6970
|
+
"fips-us-gov-west-1" : {
|
|
6971
|
+
"credentialScope" : {
|
|
6972
|
+
"region" : "us-gov-west-1"
|
|
6973
|
+
},
|
|
6974
|
+
"hostname" : "license-manager-fips.us-gov-west-1.amazonaws.com"
|
|
6975
|
+
},
|
|
5108
6976
|
"us-gov-east-1" : { },
|
|
5109
6977
|
"us-gov-west-1" : { }
|
|
5110
6978
|
}
|
|
@@ -5133,6 +7001,18 @@
|
|
|
5133
7001
|
},
|
|
5134
7002
|
"monitoring" : {
|
|
5135
7003
|
"endpoints" : {
|
|
7004
|
+
"fips-us-gov-east-1" : {
|
|
7005
|
+
"credentialScope" : {
|
|
7006
|
+
"region" : "us-gov-east-1"
|
|
7007
|
+
},
|
|
7008
|
+
"hostname" : "monitoring.us-gov-east-1.amazonaws.com"
|
|
7009
|
+
},
|
|
7010
|
+
"fips-us-gov-west-1" : {
|
|
7011
|
+
"credentialScope" : {
|
|
7012
|
+
"region" : "us-gov-west-1"
|
|
7013
|
+
},
|
|
7014
|
+
"hostname" : "monitoring.us-gov-west-1.amazonaws.com"
|
|
7015
|
+
},
|
|
5136
7016
|
"us-gov-east-1" : { },
|
|
5137
7017
|
"us-gov-west-1" : { }
|
|
5138
7018
|
}
|
|
@@ -5165,8 +7045,30 @@
|
|
|
5165
7045
|
"isRegionalized" : false,
|
|
5166
7046
|
"partitionEndpoint" : "aws-us-gov-global"
|
|
5167
7047
|
},
|
|
7048
|
+
"outposts" : {
|
|
7049
|
+
"endpoints" : {
|
|
7050
|
+
"us-gov-east-1" : { },
|
|
7051
|
+
"us-gov-west-1" : { }
|
|
7052
|
+
}
|
|
7053
|
+
},
|
|
7054
|
+
"pinpoint" : {
|
|
7055
|
+
"defaults" : {
|
|
7056
|
+
"credentialScope" : {
|
|
7057
|
+
"service" : "mobiletargeting"
|
|
7058
|
+
}
|
|
7059
|
+
},
|
|
7060
|
+
"endpoints" : {
|
|
7061
|
+
"us-gov-west-1" : { }
|
|
7062
|
+
}
|
|
7063
|
+
},
|
|
5168
7064
|
"polly" : {
|
|
5169
7065
|
"endpoints" : {
|
|
7066
|
+
"fips-us-gov-west-1" : {
|
|
7067
|
+
"credentialScope" : {
|
|
7068
|
+
"region" : "us-gov-west-1"
|
|
7069
|
+
},
|
|
7070
|
+
"hostname" : "polly-fips.us-gov-west-1.amazonaws.com"
|
|
7071
|
+
},
|
|
5170
7072
|
"us-gov-west-1" : { }
|
|
5171
7073
|
}
|
|
5172
7074
|
},
|
|
@@ -5184,8 +7086,18 @@
|
|
|
5184
7086
|
},
|
|
5185
7087
|
"redshift" : {
|
|
5186
7088
|
"endpoints" : {
|
|
5187
|
-
"us-gov-east-1" : {
|
|
5188
|
-
|
|
7089
|
+
"us-gov-east-1" : {
|
|
7090
|
+
"credentialScope" : {
|
|
7091
|
+
"region" : "us-gov-east-1"
|
|
7092
|
+
},
|
|
7093
|
+
"hostname" : "redshift.us-gov-east-1.amazonaws.com"
|
|
7094
|
+
},
|
|
7095
|
+
"us-gov-west-1" : {
|
|
7096
|
+
"credentialScope" : {
|
|
7097
|
+
"region" : "us-gov-west-1"
|
|
7098
|
+
},
|
|
7099
|
+
"hostname" : "redshift.us-gov-west-1.amazonaws.com"
|
|
7100
|
+
}
|
|
5189
7101
|
}
|
|
5190
7102
|
},
|
|
5191
7103
|
"rekognition" : {
|
|
@@ -5309,6 +7221,12 @@
|
|
|
5309
7221
|
}
|
|
5310
7222
|
}
|
|
5311
7223
|
},
|
|
7224
|
+
"securityhub" : {
|
|
7225
|
+
"endpoints" : {
|
|
7226
|
+
"us-gov-east-1" : { },
|
|
7227
|
+
"us-gov-west-1" : { }
|
|
7228
|
+
}
|
|
7229
|
+
},
|
|
5312
7230
|
"serverlessrepo" : {
|
|
5313
7231
|
"defaults" : {
|
|
5314
7232
|
"protocols" : [ "https" ]
|
|
@@ -5324,6 +7242,13 @@
|
|
|
5324
7242
|
},
|
|
5325
7243
|
"servicecatalog" : {
|
|
5326
7244
|
"endpoints" : {
|
|
7245
|
+
"us-gov-east-1" : { },
|
|
7246
|
+
"us-gov-east-1-fips" : {
|
|
7247
|
+
"credentialScope" : {
|
|
7248
|
+
"region" : "us-gov-east-1"
|
|
7249
|
+
},
|
|
7250
|
+
"hostname" : "servicecatalog-fips.us-gov-east-1.amazonaws.com"
|
|
7251
|
+
},
|
|
5327
7252
|
"us-gov-west-1" : { },
|
|
5328
7253
|
"us-gov-west-1-fips" : {
|
|
5329
7254
|
"credentialScope" : {
|
|
@@ -5335,12 +7260,36 @@
|
|
|
5335
7260
|
},
|
|
5336
7261
|
"sms" : {
|
|
5337
7262
|
"endpoints" : {
|
|
7263
|
+
"fips-us-gov-east-1" : {
|
|
7264
|
+
"credentialScope" : {
|
|
7265
|
+
"region" : "us-gov-east-1"
|
|
7266
|
+
},
|
|
7267
|
+
"hostname" : "sms-fips.us-gov-east-1.amazonaws.com"
|
|
7268
|
+
},
|
|
7269
|
+
"fips-us-gov-west-1" : {
|
|
7270
|
+
"credentialScope" : {
|
|
7271
|
+
"region" : "us-gov-west-1"
|
|
7272
|
+
},
|
|
7273
|
+
"hostname" : "sms-fips.us-gov-west-1.amazonaws.com"
|
|
7274
|
+
},
|
|
5338
7275
|
"us-gov-east-1" : { },
|
|
5339
7276
|
"us-gov-west-1" : { }
|
|
5340
7277
|
}
|
|
5341
7278
|
},
|
|
5342
7279
|
"snowball" : {
|
|
5343
7280
|
"endpoints" : {
|
|
7281
|
+
"fips-us-gov-east-1" : {
|
|
7282
|
+
"credentialScope" : {
|
|
7283
|
+
"region" : "us-gov-east-1"
|
|
7284
|
+
},
|
|
7285
|
+
"hostname" : "snowball-fips.us-gov-east-1.amazonaws.com"
|
|
7286
|
+
},
|
|
7287
|
+
"fips-us-gov-west-1" : {
|
|
7288
|
+
"credentialScope" : {
|
|
7289
|
+
"region" : "us-gov-west-1"
|
|
7290
|
+
},
|
|
7291
|
+
"hostname" : "snowball-fips.us-gov-west-1.amazonaws.com"
|
|
7292
|
+
},
|
|
5344
7293
|
"us-gov-east-1" : { },
|
|
5345
7294
|
"us-gov-west-1" : { }
|
|
5346
7295
|
}
|
|
@@ -5370,12 +7319,25 @@
|
|
|
5370
7319
|
},
|
|
5371
7320
|
"states" : {
|
|
5372
7321
|
"endpoints" : {
|
|
7322
|
+
"fips-us-gov-east-1" : {
|
|
7323
|
+
"credentialScope" : {
|
|
7324
|
+
"region" : "us-gov-east-1"
|
|
7325
|
+
},
|
|
7326
|
+
"hostname" : "states-fips.us-gov-east-1.amazonaws.com"
|
|
7327
|
+
},
|
|
7328
|
+
"fips-us-gov-west-1" : {
|
|
7329
|
+
"credentialScope" : {
|
|
7330
|
+
"region" : "us-gov-west-1"
|
|
7331
|
+
},
|
|
7332
|
+
"hostname" : "states.us-gov-west-1.amazonaws.com"
|
|
7333
|
+
},
|
|
5373
7334
|
"us-gov-east-1" : { },
|
|
5374
7335
|
"us-gov-west-1" : { }
|
|
5375
7336
|
}
|
|
5376
7337
|
},
|
|
5377
7338
|
"storagegateway" : {
|
|
5378
7339
|
"endpoints" : {
|
|
7340
|
+
"us-gov-east-1" : { },
|
|
5379
7341
|
"us-gov-west-1" : { }
|
|
5380
7342
|
}
|
|
5381
7343
|
},
|
|
@@ -5421,8 +7383,18 @@
|
|
|
5421
7383
|
},
|
|
5422
7384
|
"swf" : {
|
|
5423
7385
|
"endpoints" : {
|
|
5424
|
-
"us-gov-east-1" : {
|
|
5425
|
-
|
|
7386
|
+
"us-gov-east-1" : {
|
|
7387
|
+
"credentialScope" : {
|
|
7388
|
+
"region" : "us-gov-east-1"
|
|
7389
|
+
},
|
|
7390
|
+
"hostname" : "swf.us-gov-east-1.amazonaws.com"
|
|
7391
|
+
},
|
|
7392
|
+
"us-gov-west-1" : {
|
|
7393
|
+
"credentialScope" : {
|
|
7394
|
+
"region" : "us-gov-west-1"
|
|
7395
|
+
},
|
|
7396
|
+
"hostname" : "swf.us-gov-west-1.amazonaws.com"
|
|
7397
|
+
}
|
|
5426
7398
|
}
|
|
5427
7399
|
},
|
|
5428
7400
|
"tagging" : {
|
|
@@ -5436,6 +7408,18 @@
|
|
|
5436
7408
|
"protocols" : [ "https" ]
|
|
5437
7409
|
},
|
|
5438
7410
|
"endpoints" : {
|
|
7411
|
+
"fips-us-gov-east-1" : {
|
|
7412
|
+
"credentialScope" : {
|
|
7413
|
+
"region" : "us-gov-east-1"
|
|
7414
|
+
},
|
|
7415
|
+
"hostname" : "fips.transcribe.us-gov-east-1.amazonaws.com"
|
|
7416
|
+
},
|
|
7417
|
+
"fips-us-gov-west-1" : {
|
|
7418
|
+
"credentialScope" : {
|
|
7419
|
+
"region" : "us-gov-west-1"
|
|
7420
|
+
},
|
|
7421
|
+
"hostname" : "fips.transcribe.us-gov-west-1.amazonaws.com"
|
|
7422
|
+
},
|
|
5439
7423
|
"us-gov-east-1" : { },
|
|
5440
7424
|
"us-gov-west-1" : { }
|
|
5441
7425
|
}
|
|
@@ -5456,7 +7440,18 @@
|
|
|
5456
7440
|
},
|
|
5457
7441
|
"waf-regional" : {
|
|
5458
7442
|
"endpoints" : {
|
|
5459
|
-
"us-gov-west-1" : {
|
|
7443
|
+
"fips-us-gov-west-1" : {
|
|
7444
|
+
"credentialScope" : {
|
|
7445
|
+
"region" : "us-gov-west-1"
|
|
7446
|
+
},
|
|
7447
|
+
"hostname" : "waf-regional-fips.us-gov-west-1.amazonaws.com"
|
|
7448
|
+
},
|
|
7449
|
+
"us-gov-west-1" : {
|
|
7450
|
+
"credentialScope" : {
|
|
7451
|
+
"region" : "us-gov-west-1"
|
|
7452
|
+
},
|
|
7453
|
+
"hostname" : "waf-regional.us-gov-west-1.amazonaws.com"
|
|
7454
|
+
}
|
|
5460
7455
|
}
|
|
5461
7456
|
},
|
|
5462
7457
|
"workspaces" : {
|
|
@@ -5537,6 +7532,14 @@
|
|
|
5537
7532
|
"us-iso-east-1" : { }
|
|
5538
7533
|
}
|
|
5539
7534
|
},
|
|
7535
|
+
"comprehend" : {
|
|
7536
|
+
"defaults" : {
|
|
7537
|
+
"protocols" : [ "https" ]
|
|
7538
|
+
},
|
|
7539
|
+
"endpoints" : {
|
|
7540
|
+
"us-iso-east-1" : { }
|
|
7541
|
+
}
|
|
7542
|
+
},
|
|
5540
7543
|
"config" : {
|
|
5541
7544
|
"endpoints" : {
|
|
5542
7545
|
"us-iso-east-1" : { }
|
|
@@ -5554,6 +7557,12 @@
|
|
|
5554
7557
|
},
|
|
5555
7558
|
"dms" : {
|
|
5556
7559
|
"endpoints" : {
|
|
7560
|
+
"dms-fips" : {
|
|
7561
|
+
"credentialScope" : {
|
|
7562
|
+
"region" : "us-iso-east-1"
|
|
7563
|
+
},
|
|
7564
|
+
"hostname" : "dms.us-iso-east-1.c2s.ic.gov"
|
|
7565
|
+
},
|
|
5557
7566
|
"us-iso-east-1" : { }
|
|
5558
7567
|
}
|
|
5559
7568
|
},
|
|
@@ -5814,6 +7823,12 @@
|
|
|
5814
7823
|
},
|
|
5815
7824
|
"dms" : {
|
|
5816
7825
|
"endpoints" : {
|
|
7826
|
+
"dms-fips" : {
|
|
7827
|
+
"credentialScope" : {
|
|
7828
|
+
"region" : "us-isob-east-1"
|
|
7829
|
+
},
|
|
7830
|
+
"hostname" : "dms.us-isob-east-1.sc2s.sgov.gov"
|
|
7831
|
+
},
|
|
5817
7832
|
"us-isob-east-1" : { }
|
|
5818
7833
|
}
|
|
5819
7834
|
},
|
|
@@ -5893,6 +7908,11 @@
|
|
|
5893
7908
|
"us-isob-east-1" : { }
|
|
5894
7909
|
}
|
|
5895
7910
|
},
|
|
7911
|
+
"license-manager" : {
|
|
7912
|
+
"endpoints" : {
|
|
7913
|
+
"us-isob-east-1" : { }
|
|
7914
|
+
}
|
|
7915
|
+
},
|
|
5896
7916
|
"logs" : {
|
|
5897
7917
|
"endpoints" : {
|
|
5898
7918
|
"us-isob-east-1" : { }
|