aws-partitions 1.516.0 → 1.521.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 +4 -4
- data/CHANGELOG.md +30 -0
- data/VERSION +1 -1
- data/lib/aws-partitions/endpoint_provider.rb +46 -9
- data/lib/aws-partitions.rb +1 -0
- data/partitions.json +727 -24
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fb3165f1dbb15f7f8322b8fc1ef6041ef1a82a6a5c64902eb7bc4e5196fc2385
|
|
4
|
+
data.tar.gz: 3fda6ca71347953ce64d0f38589f692c7690742b289d5cfeaa62dcc87c093193
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ed4f38c8d8f7353e344c80c023b5e473658aa035a596916c2e5519c375cef2ab632fa246c352960818a8ba9427bf37f38c7fd5ac401c37a5126b8bd582ccf256
|
|
7
|
+
data.tar.gz: 040cf6726d569d7467104904622005160e860647c40d0ca7695463a5d73bee0dc0a0018ca0a5e2c3b437ce67920430aed98257081a649cd5e485362bed6e48ff
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,36 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.521.0 (2021-10-29)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
8
|
+
|
|
9
|
+
1.520.1 (2021-10-28)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Issue - Add `signing_service` method and resolve `credentialScope` correctly for global services/service defaults.
|
|
13
|
+
|
|
14
|
+
1.520.0 (2021-10-27)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
18
|
+
|
|
19
|
+
1.519.0 (2021-10-25)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
23
|
+
|
|
24
|
+
1.518.0 (2021-10-21)
|
|
25
|
+
------------------
|
|
26
|
+
|
|
27
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
28
|
+
|
|
29
|
+
1.517.0 (2021-10-20)
|
|
30
|
+
------------------
|
|
31
|
+
|
|
32
|
+
* Feature - Added support for enumerating regions for `Aws::Panorama`.
|
|
33
|
+
|
|
4
34
|
1.516.0 (2021-10-14)
|
|
5
35
|
------------------
|
|
6
36
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.521.0
|
|
@@ -44,16 +44,49 @@ module Aws
|
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
# @api private Use the static class methods instead.
|
|
47
|
-
def signing_region(region, service)
|
|
48
|
-
|
|
49
|
-
.fetch('services', {})
|
|
50
|
-
.fetch(service, {})
|
|
51
|
-
.fetch('endpoints', {})
|
|
52
|
-
.fetch(region, {})
|
|
53
|
-
.fetch('credentialScope', {})
|
|
47
|
+
def signing_region(region, service, sts_regional_endpoints)
|
|
48
|
+
credential_scope(region, service, sts_regional_endpoints)
|
|
54
49
|
.fetch('region', region)
|
|
55
50
|
end
|
|
56
51
|
|
|
52
|
+
# @api private Use the static class methods instead.
|
|
53
|
+
def signing_service(region, service)
|
|
54
|
+
# don't default to the service name
|
|
55
|
+
# signers should prefer the api metadata's signingName
|
|
56
|
+
# if no service is set in the credentialScope
|
|
57
|
+
credential_scope(region, service, 'regional')
|
|
58
|
+
.fetch('service', nil)
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# @api private Use the static class methods instead.
|
|
62
|
+
def credential_scope(region, service, sts_regional_endpoints)
|
|
63
|
+
partition = get_partition(region)
|
|
64
|
+
service_cfg = partition.fetch('services', {})
|
|
65
|
+
.fetch(service, {})
|
|
66
|
+
endpoints = service_cfg.fetch('endpoints', {})
|
|
67
|
+
|
|
68
|
+
# Check for sts legacy behavior
|
|
69
|
+
sts_legacy = service == 'sts' &&
|
|
70
|
+
sts_regional_endpoints == 'legacy' &&
|
|
71
|
+
STS_LEGACY_REGIONS.include?(region)
|
|
72
|
+
|
|
73
|
+
is_global = !endpoints.key?(region) &&
|
|
74
|
+
service_cfg['isRegionalized'] == false
|
|
75
|
+
|
|
76
|
+
# Check for global endpoint.
|
|
77
|
+
if sts_legacy || is_global
|
|
78
|
+
region = service_cfg.fetch('partitionEndpoint', region)
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
default_credential_scope = service_cfg
|
|
82
|
+
.fetch('defaults', {})
|
|
83
|
+
.fetch('credentialScope', {})
|
|
84
|
+
|
|
85
|
+
endpoints
|
|
86
|
+
.fetch(region, {})
|
|
87
|
+
.fetch('credentialScope', default_credential_scope)
|
|
88
|
+
end
|
|
89
|
+
|
|
57
90
|
# @api private Use the static class methods instead.
|
|
58
91
|
def dns_suffix_for(region)
|
|
59
92
|
get_partition(region)['dnsSuffix']
|
|
@@ -132,8 +165,12 @@ module Aws
|
|
|
132
165
|
default_provider.resolve(region, service, sts_regional_endpoints)
|
|
133
166
|
end
|
|
134
167
|
|
|
135
|
-
def signing_region(region, service)
|
|
136
|
-
default_provider.signing_region(region, service)
|
|
168
|
+
def signing_region(region, service, sts_regional_endpoints = 'regional')
|
|
169
|
+
default_provider.signing_region(region, service, sts_regional_endpoints)
|
|
170
|
+
end
|
|
171
|
+
|
|
172
|
+
def signing_service(region, service)
|
|
173
|
+
default_provider.signing_service(region, service)
|
|
137
174
|
end
|
|
138
175
|
|
|
139
176
|
def dns_suffix_for(region)
|
data/lib/aws-partitions.rb
CHANGED
|
@@ -425,6 +425,7 @@ module Aws
|
|
|
425
425
|
'Organizations' => 'organizations',
|
|
426
426
|
'Outposts' => 'outposts',
|
|
427
427
|
'PI' => 'pi',
|
|
428
|
+
'Panorama' => 'panorama',
|
|
428
429
|
'Personalize' => 'personalize',
|
|
429
430
|
'PersonalizeEvents' => 'personalize-events',
|
|
430
431
|
'PersonalizeRuntime' => 'personalize-runtime',
|
data/partitions.json
CHANGED
|
@@ -766,6 +766,30 @@
|
|
|
766
766
|
"us-west-2" : { }
|
|
767
767
|
}
|
|
768
768
|
},
|
|
769
|
+
"applicationinsights" : {
|
|
770
|
+
"endpoints" : {
|
|
771
|
+
"af-south-1" : { },
|
|
772
|
+
"ap-east-1" : { },
|
|
773
|
+
"ap-northeast-1" : { },
|
|
774
|
+
"ap-northeast-2" : { },
|
|
775
|
+
"ap-south-1" : { },
|
|
776
|
+
"ap-southeast-1" : { },
|
|
777
|
+
"ap-southeast-2" : { },
|
|
778
|
+
"ca-central-1" : { },
|
|
779
|
+
"eu-central-1" : { },
|
|
780
|
+
"eu-north-1" : { },
|
|
781
|
+
"eu-south-1" : { },
|
|
782
|
+
"eu-west-1" : { },
|
|
783
|
+
"eu-west-2" : { },
|
|
784
|
+
"eu-west-3" : { },
|
|
785
|
+
"me-south-1" : { },
|
|
786
|
+
"sa-east-1" : { },
|
|
787
|
+
"us-east-1" : { },
|
|
788
|
+
"us-east-2" : { },
|
|
789
|
+
"us-west-1" : { },
|
|
790
|
+
"us-west-2" : { }
|
|
791
|
+
}
|
|
792
|
+
},
|
|
769
793
|
"appmesh" : {
|
|
770
794
|
"endpoints" : {
|
|
771
795
|
"af-south-1" : { },
|
|
@@ -822,7 +846,19 @@
|
|
|
822
846
|
"hostname" : "appstream2-fips.us-west-2.amazonaws.com"
|
|
823
847
|
},
|
|
824
848
|
"us-east-1" : { },
|
|
825
|
-
"us-
|
|
849
|
+
"us-east-1-fips" : {
|
|
850
|
+
"credentialScope" : {
|
|
851
|
+
"region" : "us-east-1"
|
|
852
|
+
},
|
|
853
|
+
"hostname" : "appstream2-fips.us-east-1.amazonaws.com"
|
|
854
|
+
},
|
|
855
|
+
"us-west-2" : { },
|
|
856
|
+
"us-west-2-fips" : {
|
|
857
|
+
"credentialScope" : {
|
|
858
|
+
"region" : "us-west-2"
|
|
859
|
+
},
|
|
860
|
+
"hostname" : "appstream2-fips.us-west-2.amazonaws.com"
|
|
861
|
+
}
|
|
826
862
|
}
|
|
827
863
|
},
|
|
828
864
|
"appsync" : {
|
|
@@ -1445,6 +1481,12 @@
|
|
|
1445
1481
|
"ap-southeast-1" : { },
|
|
1446
1482
|
"ap-southeast-2" : { },
|
|
1447
1483
|
"ca-central-1" : { },
|
|
1484
|
+
"ca-central-1-fips" : {
|
|
1485
|
+
"credentialScope" : {
|
|
1486
|
+
"region" : "ca-central-1"
|
|
1487
|
+
},
|
|
1488
|
+
"hostname" : "codecommit-fips.ca-central-1.amazonaws.com"
|
|
1489
|
+
},
|
|
1448
1490
|
"eu-central-1" : { },
|
|
1449
1491
|
"eu-north-1" : { },
|
|
1450
1492
|
"eu-south-1" : { },
|
|
@@ -1460,9 +1502,33 @@
|
|
|
1460
1502
|
"me-south-1" : { },
|
|
1461
1503
|
"sa-east-1" : { },
|
|
1462
1504
|
"us-east-1" : { },
|
|
1505
|
+
"us-east-1-fips" : {
|
|
1506
|
+
"credentialScope" : {
|
|
1507
|
+
"region" : "us-east-1"
|
|
1508
|
+
},
|
|
1509
|
+
"hostname" : "codecommit-fips.us-east-1.amazonaws.com"
|
|
1510
|
+
},
|
|
1463
1511
|
"us-east-2" : { },
|
|
1512
|
+
"us-east-2-fips" : {
|
|
1513
|
+
"credentialScope" : {
|
|
1514
|
+
"region" : "us-east-2"
|
|
1515
|
+
},
|
|
1516
|
+
"hostname" : "codecommit-fips.us-east-2.amazonaws.com"
|
|
1517
|
+
},
|
|
1464
1518
|
"us-west-1" : { },
|
|
1465
|
-
"us-west-
|
|
1519
|
+
"us-west-1-fips" : {
|
|
1520
|
+
"credentialScope" : {
|
|
1521
|
+
"region" : "us-west-1"
|
|
1522
|
+
},
|
|
1523
|
+
"hostname" : "codecommit-fips.us-west-1.amazonaws.com"
|
|
1524
|
+
},
|
|
1525
|
+
"us-west-2" : { },
|
|
1526
|
+
"us-west-2-fips" : {
|
|
1527
|
+
"credentialScope" : {
|
|
1528
|
+
"region" : "us-west-2"
|
|
1529
|
+
},
|
|
1530
|
+
"hostname" : "codecommit-fips.us-west-2.amazonaws.com"
|
|
1531
|
+
}
|
|
1466
1532
|
}
|
|
1467
1533
|
},
|
|
1468
1534
|
"codedeploy" : {
|
|
@@ -1834,6 +1900,7 @@
|
|
|
1834
1900
|
"connect" : {
|
|
1835
1901
|
"endpoints" : {
|
|
1836
1902
|
"ap-northeast-1" : { },
|
|
1903
|
+
"ap-northeast-2" : { },
|
|
1837
1904
|
"ap-southeast-1" : { },
|
|
1838
1905
|
"ap-southeast-2" : { },
|
|
1839
1906
|
"ca-central-1" : { },
|
|
@@ -1846,6 +1913,7 @@
|
|
|
1846
1913
|
"contact-lens" : {
|
|
1847
1914
|
"endpoints" : {
|
|
1848
1915
|
"ap-northeast-1" : { },
|
|
1916
|
+
"ap-northeast-2" : { },
|
|
1849
1917
|
"ap-southeast-2" : { },
|
|
1850
1918
|
"ca-central-1" : { },
|
|
1851
1919
|
"eu-central-1" : { },
|
|
@@ -2192,9 +2260,33 @@
|
|
|
2192
2260
|
"me-south-1" : { },
|
|
2193
2261
|
"sa-east-1" : { },
|
|
2194
2262
|
"us-east-1" : { },
|
|
2263
|
+
"us-east-1-fips" : {
|
|
2264
|
+
"credentialScope" : {
|
|
2265
|
+
"region" : "us-east-1"
|
|
2266
|
+
},
|
|
2267
|
+
"hostname" : "dms-fips.us-east-1.amazonaws.com"
|
|
2268
|
+
},
|
|
2195
2269
|
"us-east-2" : { },
|
|
2270
|
+
"us-east-2-fips" : {
|
|
2271
|
+
"credentialScope" : {
|
|
2272
|
+
"region" : "us-east-2"
|
|
2273
|
+
},
|
|
2274
|
+
"hostname" : "dms-fips.us-east-2.amazonaws.com"
|
|
2275
|
+
},
|
|
2196
2276
|
"us-west-1" : { },
|
|
2197
|
-
"us-west-
|
|
2277
|
+
"us-west-1-fips" : {
|
|
2278
|
+
"credentialScope" : {
|
|
2279
|
+
"region" : "us-west-1"
|
|
2280
|
+
},
|
|
2281
|
+
"hostname" : "dms-fips.us-west-1.amazonaws.com"
|
|
2282
|
+
},
|
|
2283
|
+
"us-west-2" : { },
|
|
2284
|
+
"us-west-2-fips" : {
|
|
2285
|
+
"credentialScope" : {
|
|
2286
|
+
"region" : "us-west-2"
|
|
2287
|
+
},
|
|
2288
|
+
"hostname" : "dms-fips.us-west-2.amazonaws.com"
|
|
2289
|
+
}
|
|
2198
2290
|
}
|
|
2199
2291
|
},
|
|
2200
2292
|
"docdb" : {
|
|
@@ -2645,9 +2737,33 @@
|
|
|
2645
2737
|
"me-south-1" : { },
|
|
2646
2738
|
"sa-east-1" : { },
|
|
2647
2739
|
"us-east-1" : { },
|
|
2740
|
+
"us-east-1-fips" : {
|
|
2741
|
+
"credentialScope" : {
|
|
2742
|
+
"region" : "us-east-1"
|
|
2743
|
+
},
|
|
2744
|
+
"hostname" : "elasticache-fips.us-east-1.amazonaws.com"
|
|
2745
|
+
},
|
|
2648
2746
|
"us-east-2" : { },
|
|
2747
|
+
"us-east-2-fips" : {
|
|
2748
|
+
"credentialScope" : {
|
|
2749
|
+
"region" : "us-east-2"
|
|
2750
|
+
},
|
|
2751
|
+
"hostname" : "elasticache-fips.us-east-2.amazonaws.com"
|
|
2752
|
+
},
|
|
2649
2753
|
"us-west-1" : { },
|
|
2650
|
-
"us-west-
|
|
2754
|
+
"us-west-1-fips" : {
|
|
2755
|
+
"credentialScope" : {
|
|
2756
|
+
"region" : "us-west-1"
|
|
2757
|
+
},
|
|
2758
|
+
"hostname" : "elasticache-fips.us-west-1.amazonaws.com"
|
|
2759
|
+
},
|
|
2760
|
+
"us-west-2" : { },
|
|
2761
|
+
"us-west-2-fips" : {
|
|
2762
|
+
"credentialScope" : {
|
|
2763
|
+
"region" : "us-west-2"
|
|
2764
|
+
},
|
|
2765
|
+
"hostname" : "elasticache-fips.us-west-2.amazonaws.com"
|
|
2766
|
+
}
|
|
2651
2767
|
}
|
|
2652
2768
|
},
|
|
2653
2769
|
"elasticbeanstalk" : {
|
|
@@ -3073,9 +3189,33 @@
|
|
|
3073
3189
|
"me-south-1" : { },
|
|
3074
3190
|
"sa-east-1" : { },
|
|
3075
3191
|
"us-east-1" : { },
|
|
3192
|
+
"us-east-1-fips" : {
|
|
3193
|
+
"credentialScope" : {
|
|
3194
|
+
"region" : "us-east-1"
|
|
3195
|
+
},
|
|
3196
|
+
"hostname" : "es-fips.us-east-1.amazonaws.com"
|
|
3197
|
+
},
|
|
3076
3198
|
"us-east-2" : { },
|
|
3199
|
+
"us-east-2-fips" : {
|
|
3200
|
+
"credentialScope" : {
|
|
3201
|
+
"region" : "us-east-2"
|
|
3202
|
+
},
|
|
3203
|
+
"hostname" : "es-fips.us-east-2.amazonaws.com"
|
|
3204
|
+
},
|
|
3077
3205
|
"us-west-1" : { },
|
|
3078
|
-
"us-west-
|
|
3206
|
+
"us-west-1-fips" : {
|
|
3207
|
+
"credentialScope" : {
|
|
3208
|
+
"region" : "us-west-1"
|
|
3209
|
+
},
|
|
3210
|
+
"hostname" : "es-fips.us-west-1.amazonaws.com"
|
|
3211
|
+
},
|
|
3212
|
+
"us-west-2" : { },
|
|
3213
|
+
"us-west-2-fips" : {
|
|
3214
|
+
"credentialScope" : {
|
|
3215
|
+
"region" : "us-west-2"
|
|
3216
|
+
},
|
|
3217
|
+
"hostname" : "es-fips.us-west-2.amazonaws.com"
|
|
3218
|
+
}
|
|
3079
3219
|
}
|
|
3080
3220
|
},
|
|
3081
3221
|
"events" : {
|
|
@@ -3427,6 +3567,12 @@
|
|
|
3427
3567
|
"eu-west-1" : { },
|
|
3428
3568
|
"eu-west-2" : { },
|
|
3429
3569
|
"eu-west-3" : { },
|
|
3570
|
+
"fips-ca-central-1" : {
|
|
3571
|
+
"credentialScope" : {
|
|
3572
|
+
"region" : "ca-central-1"
|
|
3573
|
+
},
|
|
3574
|
+
"hostname" : "fsx-fips.ca-central-1.amazonaws.com"
|
|
3575
|
+
},
|
|
3430
3576
|
"fips-prod-ca-central-1" : {
|
|
3431
3577
|
"credentialScope" : {
|
|
3432
3578
|
"region" : "ca-central-1"
|
|
@@ -3457,6 +3603,30 @@
|
|
|
3457
3603
|
},
|
|
3458
3604
|
"hostname" : "fsx-fips.us-west-2.amazonaws.com"
|
|
3459
3605
|
},
|
|
3606
|
+
"fips-us-east-1" : {
|
|
3607
|
+
"credentialScope" : {
|
|
3608
|
+
"region" : "us-east-1"
|
|
3609
|
+
},
|
|
3610
|
+
"hostname" : "fsx-fips.us-east-1.amazonaws.com"
|
|
3611
|
+
},
|
|
3612
|
+
"fips-us-east-2" : {
|
|
3613
|
+
"credentialScope" : {
|
|
3614
|
+
"region" : "us-east-2"
|
|
3615
|
+
},
|
|
3616
|
+
"hostname" : "fsx-fips.us-east-2.amazonaws.com"
|
|
3617
|
+
},
|
|
3618
|
+
"fips-us-west-1" : {
|
|
3619
|
+
"credentialScope" : {
|
|
3620
|
+
"region" : "us-west-1"
|
|
3621
|
+
},
|
|
3622
|
+
"hostname" : "fsx-fips.us-west-1.amazonaws.com"
|
|
3623
|
+
},
|
|
3624
|
+
"fips-us-west-2" : {
|
|
3625
|
+
"credentialScope" : {
|
|
3626
|
+
"region" : "us-west-2"
|
|
3627
|
+
},
|
|
3628
|
+
"hostname" : "fsx-fips.us-west-2.amazonaws.com"
|
|
3629
|
+
},
|
|
3460
3630
|
"me-south-1" : { },
|
|
3461
3631
|
"sa-east-1" : { },
|
|
3462
3632
|
"us-east-1" : { },
|
|
@@ -3797,6 +3967,12 @@
|
|
|
3797
3967
|
},
|
|
3798
3968
|
"hostname" : "iam.amazonaws.com"
|
|
3799
3969
|
},
|
|
3970
|
+
"aws-global-fips" : {
|
|
3971
|
+
"credentialScope" : {
|
|
3972
|
+
"region" : "us-east-1"
|
|
3973
|
+
},
|
|
3974
|
+
"hostname" : "iam-fips.amazonaws.com"
|
|
3975
|
+
},
|
|
3800
3976
|
"iam-fips" : {
|
|
3801
3977
|
"credentialScope" : {
|
|
3802
3978
|
"region" : "us-east-1"
|
|
@@ -4095,6 +4271,19 @@
|
|
|
4095
4271
|
"us-west-2" : { }
|
|
4096
4272
|
}
|
|
4097
4273
|
},
|
|
4274
|
+
"iotsitewise" : {
|
|
4275
|
+
"endpoints" : {
|
|
4276
|
+
"ap-northeast-1" : { },
|
|
4277
|
+
"ap-northeast-2" : { },
|
|
4278
|
+
"ap-south-1" : { },
|
|
4279
|
+
"ap-southeast-1" : { },
|
|
4280
|
+
"ap-southeast-2" : { },
|
|
4281
|
+
"eu-central-1" : { },
|
|
4282
|
+
"eu-west-1" : { },
|
|
4283
|
+
"us-east-1" : { },
|
|
4284
|
+
"us-west-2" : { }
|
|
4285
|
+
}
|
|
4286
|
+
},
|
|
4098
4287
|
"iotthingsgraph" : {
|
|
4099
4288
|
"defaults" : {
|
|
4100
4289
|
"credentialScope" : {
|
|
@@ -4317,26 +4506,152 @@
|
|
|
4317
4506
|
"kms" : {
|
|
4318
4507
|
"endpoints" : {
|
|
4319
4508
|
"af-south-1" : { },
|
|
4509
|
+
"af-south-1-fips" : {
|
|
4510
|
+
"credentialScope" : {
|
|
4511
|
+
"region" : "af-south-1"
|
|
4512
|
+
},
|
|
4513
|
+
"hostname" : "kms-fips.af-south-1.amazonaws.com"
|
|
4514
|
+
},
|
|
4320
4515
|
"ap-east-1" : { },
|
|
4516
|
+
"ap-east-1-fips" : {
|
|
4517
|
+
"credentialScope" : {
|
|
4518
|
+
"region" : "ap-east-1"
|
|
4519
|
+
},
|
|
4520
|
+
"hostname" : "kms-fips.ap-east-1.amazonaws.com"
|
|
4521
|
+
},
|
|
4321
4522
|
"ap-northeast-1" : { },
|
|
4523
|
+
"ap-northeast-1-fips" : {
|
|
4524
|
+
"credentialScope" : {
|
|
4525
|
+
"region" : "ap-northeast-1"
|
|
4526
|
+
},
|
|
4527
|
+
"hostname" : "kms-fips.ap-northeast-1.amazonaws.com"
|
|
4528
|
+
},
|
|
4322
4529
|
"ap-northeast-2" : { },
|
|
4530
|
+
"ap-northeast-2-fips" : {
|
|
4531
|
+
"credentialScope" : {
|
|
4532
|
+
"region" : "ap-northeast-2"
|
|
4533
|
+
},
|
|
4534
|
+
"hostname" : "kms-fips.ap-northeast-2.amazonaws.com"
|
|
4535
|
+
},
|
|
4323
4536
|
"ap-northeast-3" : { },
|
|
4537
|
+
"ap-northeast-3-fips" : {
|
|
4538
|
+
"credentialScope" : {
|
|
4539
|
+
"region" : "ap-northeast-3"
|
|
4540
|
+
},
|
|
4541
|
+
"hostname" : "kms-fips.ap-northeast-3.amazonaws.com"
|
|
4542
|
+
},
|
|
4324
4543
|
"ap-south-1" : { },
|
|
4544
|
+
"ap-south-1-fips" : {
|
|
4545
|
+
"credentialScope" : {
|
|
4546
|
+
"region" : "ap-south-1"
|
|
4547
|
+
},
|
|
4548
|
+
"hostname" : "kms-fips.ap-south-1.amazonaws.com"
|
|
4549
|
+
},
|
|
4325
4550
|
"ap-southeast-1" : { },
|
|
4551
|
+
"ap-southeast-1-fips" : {
|
|
4552
|
+
"credentialScope" : {
|
|
4553
|
+
"region" : "ap-southeast-1"
|
|
4554
|
+
},
|
|
4555
|
+
"hostname" : "kms-fips.ap-southeast-1.amazonaws.com"
|
|
4556
|
+
},
|
|
4326
4557
|
"ap-southeast-2" : { },
|
|
4558
|
+
"ap-southeast-2-fips" : {
|
|
4559
|
+
"credentialScope" : {
|
|
4560
|
+
"region" : "ap-southeast-2"
|
|
4561
|
+
},
|
|
4562
|
+
"hostname" : "kms-fips.ap-southeast-2.amazonaws.com"
|
|
4563
|
+
},
|
|
4327
4564
|
"ca-central-1" : { },
|
|
4565
|
+
"ca-central-1-fips" : {
|
|
4566
|
+
"credentialScope" : {
|
|
4567
|
+
"region" : "ca-central-1"
|
|
4568
|
+
},
|
|
4569
|
+
"hostname" : "kms-fips.ca-central-1.amazonaws.com"
|
|
4570
|
+
},
|
|
4328
4571
|
"eu-central-1" : { },
|
|
4572
|
+
"eu-central-1-fips" : {
|
|
4573
|
+
"credentialScope" : {
|
|
4574
|
+
"region" : "eu-central-1"
|
|
4575
|
+
},
|
|
4576
|
+
"hostname" : "kms-fips.eu-central-1.amazonaws.com"
|
|
4577
|
+
},
|
|
4329
4578
|
"eu-north-1" : { },
|
|
4579
|
+
"eu-north-1-fips" : {
|
|
4580
|
+
"credentialScope" : {
|
|
4581
|
+
"region" : "eu-north-1"
|
|
4582
|
+
},
|
|
4583
|
+
"hostname" : "kms-fips.eu-north-1.amazonaws.com"
|
|
4584
|
+
},
|
|
4330
4585
|
"eu-south-1" : { },
|
|
4586
|
+
"eu-south-1-fips" : {
|
|
4587
|
+
"credentialScope" : {
|
|
4588
|
+
"region" : "eu-south-1"
|
|
4589
|
+
},
|
|
4590
|
+
"hostname" : "kms-fips.eu-south-1.amazonaws.com"
|
|
4591
|
+
},
|
|
4331
4592
|
"eu-west-1" : { },
|
|
4593
|
+
"eu-west-1-fips" : {
|
|
4594
|
+
"credentialScope" : {
|
|
4595
|
+
"region" : "eu-west-1"
|
|
4596
|
+
},
|
|
4597
|
+
"hostname" : "kms-fips.eu-west-1.amazonaws.com"
|
|
4598
|
+
},
|
|
4332
4599
|
"eu-west-2" : { },
|
|
4600
|
+
"eu-west-2-fips" : {
|
|
4601
|
+
"credentialScope" : {
|
|
4602
|
+
"region" : "eu-west-2"
|
|
4603
|
+
},
|
|
4604
|
+
"hostname" : "kms-fips.eu-west-2.amazonaws.com"
|
|
4605
|
+
},
|
|
4333
4606
|
"eu-west-3" : { },
|
|
4607
|
+
"eu-west-3-fips" : {
|
|
4608
|
+
"credentialScope" : {
|
|
4609
|
+
"region" : "eu-west-3"
|
|
4610
|
+
},
|
|
4611
|
+
"hostname" : "kms-fips.eu-west-3.amazonaws.com"
|
|
4612
|
+
},
|
|
4334
4613
|
"me-south-1" : { },
|
|
4614
|
+
"me-south-1-fips" : {
|
|
4615
|
+
"credentialScope" : {
|
|
4616
|
+
"region" : "me-south-1"
|
|
4617
|
+
},
|
|
4618
|
+
"hostname" : "kms-fips.me-south-1.amazonaws.com"
|
|
4619
|
+
},
|
|
4335
4620
|
"sa-east-1" : { },
|
|
4621
|
+
"sa-east-1-fips" : {
|
|
4622
|
+
"credentialScope" : {
|
|
4623
|
+
"region" : "sa-east-1"
|
|
4624
|
+
},
|
|
4625
|
+
"hostname" : "kms-fips.sa-east-1.amazonaws.com"
|
|
4626
|
+
},
|
|
4336
4627
|
"us-east-1" : { },
|
|
4628
|
+
"us-east-1-fips" : {
|
|
4629
|
+
"credentialScope" : {
|
|
4630
|
+
"region" : "us-east-1"
|
|
4631
|
+
},
|
|
4632
|
+
"hostname" : "kms-fips.us-east-1.amazonaws.com"
|
|
4633
|
+
},
|
|
4337
4634
|
"us-east-2" : { },
|
|
4635
|
+
"us-east-2-fips" : {
|
|
4636
|
+
"credentialScope" : {
|
|
4637
|
+
"region" : "us-east-2"
|
|
4638
|
+
},
|
|
4639
|
+
"hostname" : "kms-fips.us-east-2.amazonaws.com"
|
|
4640
|
+
},
|
|
4338
4641
|
"us-west-1" : { },
|
|
4339
|
-
"us-west-
|
|
4642
|
+
"us-west-1-fips" : {
|
|
4643
|
+
"credentialScope" : {
|
|
4644
|
+
"region" : "us-west-1"
|
|
4645
|
+
},
|
|
4646
|
+
"hostname" : "kms-fips.us-west-1.amazonaws.com"
|
|
4647
|
+
},
|
|
4648
|
+
"us-west-2" : { },
|
|
4649
|
+
"us-west-2-fips" : {
|
|
4650
|
+
"credentialScope" : {
|
|
4651
|
+
"region" : "us-west-2"
|
|
4652
|
+
},
|
|
4653
|
+
"hostname" : "kms-fips.us-west-2.amazonaws.com"
|
|
4654
|
+
}
|
|
4340
4655
|
}
|
|
4341
4656
|
},
|
|
4342
4657
|
"lakeformation" : {
|
|
@@ -4868,6 +5183,27 @@
|
|
|
4868
5183
|
"us-west-2" : { }
|
|
4869
5184
|
}
|
|
4870
5185
|
},
|
|
5186
|
+
"mgn" : {
|
|
5187
|
+
"endpoints" : {
|
|
5188
|
+
"ap-east-1" : { },
|
|
5189
|
+
"ap-northeast-1" : { },
|
|
5190
|
+
"ap-northeast-2" : { },
|
|
5191
|
+
"ap-northeast-3" : { },
|
|
5192
|
+
"ap-south-1" : { },
|
|
5193
|
+
"ap-southeast-1" : { },
|
|
5194
|
+
"ap-southeast-2" : { },
|
|
5195
|
+
"ca-central-1" : { },
|
|
5196
|
+
"eu-central-1" : { },
|
|
5197
|
+
"eu-north-1" : { },
|
|
5198
|
+
"eu-west-1" : { },
|
|
5199
|
+
"eu-west-2" : { },
|
|
5200
|
+
"sa-east-1" : { },
|
|
5201
|
+
"us-east-1" : { },
|
|
5202
|
+
"us-east-2" : { },
|
|
5203
|
+
"us-west-1" : { },
|
|
5204
|
+
"us-west-2" : { }
|
|
5205
|
+
}
|
|
5206
|
+
},
|
|
4871
5207
|
"mobileanalytics" : {
|
|
4872
5208
|
"endpoints" : {
|
|
4873
5209
|
"us-east-1" : { }
|
|
@@ -5193,6 +5529,27 @@
|
|
|
5193
5529
|
"us-west-2" : { }
|
|
5194
5530
|
}
|
|
5195
5531
|
},
|
|
5532
|
+
"networkmanager" : {
|
|
5533
|
+
"endpoints" : {
|
|
5534
|
+
"aws-global" : {
|
|
5535
|
+
"credentialScope" : {
|
|
5536
|
+
"region" : "us-west-2"
|
|
5537
|
+
},
|
|
5538
|
+
"hostname" : "networkmanager.us-west-2.amazonaws.com"
|
|
5539
|
+
}
|
|
5540
|
+
},
|
|
5541
|
+
"isRegionalized" : false,
|
|
5542
|
+
"partitionEndpoint" : "aws-global"
|
|
5543
|
+
},
|
|
5544
|
+
"nimble" : {
|
|
5545
|
+
"endpoints" : {
|
|
5546
|
+
"ap-southeast-2" : { },
|
|
5547
|
+
"ca-central-1" : { },
|
|
5548
|
+
"eu-west-2" : { },
|
|
5549
|
+
"us-east-1" : { },
|
|
5550
|
+
"us-west-2" : { }
|
|
5551
|
+
}
|
|
5552
|
+
},
|
|
5196
5553
|
"oidc" : {
|
|
5197
5554
|
"endpoints" : {
|
|
5198
5555
|
"ap-northeast-1" : {
|
|
@@ -5693,6 +6050,12 @@
|
|
|
5693
6050
|
"ap-southeast-1" : { },
|
|
5694
6051
|
"ap-southeast-2" : { },
|
|
5695
6052
|
"ca-central-1" : { },
|
|
6053
|
+
"ca-central-1-fips" : {
|
|
6054
|
+
"credentialScope" : {
|
|
6055
|
+
"region" : "ca-central-1"
|
|
6056
|
+
},
|
|
6057
|
+
"hostname" : "rds-fips.ca-central-1.amazonaws.com"
|
|
6058
|
+
},
|
|
5696
6059
|
"eu-central-1" : { },
|
|
5697
6060
|
"eu-north-1" : { },
|
|
5698
6061
|
"eu-south-1" : { },
|
|
@@ -5734,9 +6097,33 @@
|
|
|
5734
6097
|
"us-east-1" : {
|
|
5735
6098
|
"sslCommonName" : "{service}.{dnsSuffix}"
|
|
5736
6099
|
},
|
|
6100
|
+
"us-east-1-fips" : {
|
|
6101
|
+
"credentialScope" : {
|
|
6102
|
+
"region" : "us-east-1"
|
|
6103
|
+
},
|
|
6104
|
+
"hostname" : "rds-fips.us-east-1.amazonaws.com"
|
|
6105
|
+
},
|
|
5737
6106
|
"us-east-2" : { },
|
|
6107
|
+
"us-east-2-fips" : {
|
|
6108
|
+
"credentialScope" : {
|
|
6109
|
+
"region" : "us-east-2"
|
|
6110
|
+
},
|
|
6111
|
+
"hostname" : "rds-fips.us-east-2.amazonaws.com"
|
|
6112
|
+
},
|
|
5738
6113
|
"us-west-1" : { },
|
|
5739
|
-
"us-west-
|
|
6114
|
+
"us-west-1-fips" : {
|
|
6115
|
+
"credentialScope" : {
|
|
6116
|
+
"region" : "us-west-1"
|
|
6117
|
+
},
|
|
6118
|
+
"hostname" : "rds-fips.us-west-1.amazonaws.com"
|
|
6119
|
+
},
|
|
6120
|
+
"us-west-2" : { },
|
|
6121
|
+
"us-west-2-fips" : {
|
|
6122
|
+
"credentialScope" : {
|
|
6123
|
+
"region" : "us-west-2"
|
|
6124
|
+
},
|
|
6125
|
+
"hostname" : "rds-fips.us-west-2.amazonaws.com"
|
|
6126
|
+
}
|
|
5740
6127
|
}
|
|
5741
6128
|
},
|
|
5742
6129
|
"redshift" : {
|
|
@@ -5802,6 +6189,12 @@
|
|
|
5802
6189
|
"ap-southeast-1" : { },
|
|
5803
6190
|
"ap-southeast-2" : { },
|
|
5804
6191
|
"ca-central-1" : { },
|
|
6192
|
+
"ca-central-1-fips" : {
|
|
6193
|
+
"credentialScope" : {
|
|
6194
|
+
"region" : "ca-central-1"
|
|
6195
|
+
},
|
|
6196
|
+
"hostname" : "rekognition-fips.ca-central-1.amazonaws.com"
|
|
6197
|
+
},
|
|
5805
6198
|
"eu-central-1" : { },
|
|
5806
6199
|
"eu-west-1" : { },
|
|
5807
6200
|
"eu-west-2" : { },
|
|
@@ -5836,9 +6229,33 @@
|
|
|
5836
6229
|
"hostname" : "rekognition-fips.us-west-2.amazonaws.com"
|
|
5837
6230
|
},
|
|
5838
6231
|
"us-east-1" : { },
|
|
6232
|
+
"us-east-1-fips" : {
|
|
6233
|
+
"credentialScope" : {
|
|
6234
|
+
"region" : "us-east-1"
|
|
6235
|
+
},
|
|
6236
|
+
"hostname" : "rekognition-fips.us-east-1.amazonaws.com"
|
|
6237
|
+
},
|
|
5839
6238
|
"us-east-2" : { },
|
|
6239
|
+
"us-east-2-fips" : {
|
|
6240
|
+
"credentialScope" : {
|
|
6241
|
+
"region" : "us-east-2"
|
|
6242
|
+
},
|
|
6243
|
+
"hostname" : "rekognition-fips.us-east-2.amazonaws.com"
|
|
6244
|
+
},
|
|
5840
6245
|
"us-west-1" : { },
|
|
5841
|
-
"us-west-
|
|
6246
|
+
"us-west-1-fips" : {
|
|
6247
|
+
"credentialScope" : {
|
|
6248
|
+
"region" : "us-west-1"
|
|
6249
|
+
},
|
|
6250
|
+
"hostname" : "rekognition-fips.us-west-1.amazonaws.com"
|
|
6251
|
+
},
|
|
6252
|
+
"us-west-2" : { },
|
|
6253
|
+
"us-west-2-fips" : {
|
|
6254
|
+
"credentialScope" : {
|
|
6255
|
+
"region" : "us-west-2"
|
|
6256
|
+
},
|
|
6257
|
+
"hostname" : "rekognition-fips.us-west-2.amazonaws.com"
|
|
6258
|
+
}
|
|
5842
6259
|
}
|
|
5843
6260
|
},
|
|
5844
6261
|
"resource-groups" : {
|
|
@@ -6713,6 +7130,12 @@
|
|
|
6713
7130
|
"ap-southeast-1" : { },
|
|
6714
7131
|
"ap-southeast-2" : { },
|
|
6715
7132
|
"ca-central-1" : { },
|
|
7133
|
+
"ca-central-1-fips" : {
|
|
7134
|
+
"credentialScope" : {
|
|
7135
|
+
"region" : "ca-central-1"
|
|
7136
|
+
},
|
|
7137
|
+
"hostname" : "servicediscovery-fips.ca-central-1.amazonaws.com"
|
|
7138
|
+
},
|
|
6716
7139
|
"eu-central-1" : { },
|
|
6717
7140
|
"eu-north-1" : { },
|
|
6718
7141
|
"eu-south-1" : { },
|
|
@@ -6728,9 +7151,33 @@
|
|
|
6728
7151
|
"hostname" : "servicediscovery-fips.ca-central-1.amazonaws.com"
|
|
6729
7152
|
},
|
|
6730
7153
|
"us-east-1" : { },
|
|
7154
|
+
"us-east-1-fips" : {
|
|
7155
|
+
"credentialScope" : {
|
|
7156
|
+
"region" : "us-east-1"
|
|
7157
|
+
},
|
|
7158
|
+
"hostname" : "servicediscovery-fips.us-east-1.amazonaws.com"
|
|
7159
|
+
},
|
|
6731
7160
|
"us-east-2" : { },
|
|
7161
|
+
"us-east-2-fips" : {
|
|
7162
|
+
"credentialScope" : {
|
|
7163
|
+
"region" : "us-east-2"
|
|
7164
|
+
},
|
|
7165
|
+
"hostname" : "servicediscovery-fips.us-east-2.amazonaws.com"
|
|
7166
|
+
},
|
|
6732
7167
|
"us-west-1" : { },
|
|
6733
|
-
"us-west-
|
|
7168
|
+
"us-west-1-fips" : {
|
|
7169
|
+
"credentialScope" : {
|
|
7170
|
+
"region" : "us-west-1"
|
|
7171
|
+
},
|
|
7172
|
+
"hostname" : "servicediscovery-fips.us-west-1.amazonaws.com"
|
|
7173
|
+
},
|
|
7174
|
+
"us-west-2" : { },
|
|
7175
|
+
"us-west-2-fips" : {
|
|
7176
|
+
"credentialScope" : {
|
|
7177
|
+
"region" : "us-west-2"
|
|
7178
|
+
},
|
|
7179
|
+
"hostname" : "servicediscovery-fips.us-west-2.amazonaws.com"
|
|
7180
|
+
}
|
|
6734
7181
|
}
|
|
6735
7182
|
},
|
|
6736
7183
|
"servicequotas" : {
|
|
@@ -7218,6 +7665,12 @@
|
|
|
7218
7665
|
"ap-southeast-1" : { },
|
|
7219
7666
|
"ap-southeast-2" : { },
|
|
7220
7667
|
"ca-central-1" : { },
|
|
7668
|
+
"ca-central-1-fips" : {
|
|
7669
|
+
"credentialScope" : {
|
|
7670
|
+
"region" : "ca-central-1"
|
|
7671
|
+
},
|
|
7672
|
+
"hostname" : "storagegateway-fips.ca-central-1.amazonaws.com"
|
|
7673
|
+
},
|
|
7221
7674
|
"eu-central-1" : { },
|
|
7222
7675
|
"eu-north-1" : { },
|
|
7223
7676
|
"eu-south-1" : { },
|
|
@@ -7233,9 +7686,33 @@
|
|
|
7233
7686
|
"me-south-1" : { },
|
|
7234
7687
|
"sa-east-1" : { },
|
|
7235
7688
|
"us-east-1" : { },
|
|
7689
|
+
"us-east-1-fips" : {
|
|
7690
|
+
"credentialScope" : {
|
|
7691
|
+
"region" : "us-east-1"
|
|
7692
|
+
},
|
|
7693
|
+
"hostname" : "storagegateway-fips.us-east-1.amazonaws.com"
|
|
7694
|
+
},
|
|
7236
7695
|
"us-east-2" : { },
|
|
7696
|
+
"us-east-2-fips" : {
|
|
7697
|
+
"credentialScope" : {
|
|
7698
|
+
"region" : "us-east-2"
|
|
7699
|
+
},
|
|
7700
|
+
"hostname" : "storagegateway-fips.us-east-2.amazonaws.com"
|
|
7701
|
+
},
|
|
7237
7702
|
"us-west-1" : { },
|
|
7238
|
-
"us-west-
|
|
7703
|
+
"us-west-1-fips" : {
|
|
7704
|
+
"credentialScope" : {
|
|
7705
|
+
"region" : "us-west-1"
|
|
7706
|
+
},
|
|
7707
|
+
"hostname" : "storagegateway-fips.us-west-1.amazonaws.com"
|
|
7708
|
+
},
|
|
7709
|
+
"us-west-2" : { },
|
|
7710
|
+
"us-west-2-fips" : {
|
|
7711
|
+
"credentialScope" : {
|
|
7712
|
+
"region" : "us-west-2"
|
|
7713
|
+
},
|
|
7714
|
+
"hostname" : "storagegateway-fips.us-west-2.amazonaws.com"
|
|
7715
|
+
}
|
|
7239
7716
|
}
|
|
7240
7717
|
},
|
|
7241
7718
|
"streams.dynamodb" : {
|
|
@@ -7696,6 +8173,12 @@
|
|
|
7696
8173
|
"region" : "us-east-1"
|
|
7697
8174
|
},
|
|
7698
8175
|
"hostname" : "waf.amazonaws.com"
|
|
8176
|
+
},
|
|
8177
|
+
"aws-global-fips" : {
|
|
8178
|
+
"credentialScope" : {
|
|
8179
|
+
"region" : "us-east-1"
|
|
8180
|
+
},
|
|
8181
|
+
"hostname" : "waf-fips.amazonaws.com"
|
|
7699
8182
|
}
|
|
7700
8183
|
},
|
|
7701
8184
|
"isRegionalized" : false,
|
|
@@ -7957,6 +8440,16 @@
|
|
|
7957
8440
|
}
|
|
7958
8441
|
}
|
|
7959
8442
|
},
|
|
8443
|
+
"wisdom" : {
|
|
8444
|
+
"endpoints" : {
|
|
8445
|
+
"ap-northeast-1" : { },
|
|
8446
|
+
"ap-southeast-2" : { },
|
|
8447
|
+
"eu-central-1" : { },
|
|
8448
|
+
"eu-west-2" : { },
|
|
8449
|
+
"us-east-1" : { },
|
|
8450
|
+
"us-west-2" : { }
|
|
8451
|
+
}
|
|
8452
|
+
},
|
|
7960
8453
|
"workdocs" : {
|
|
7961
8454
|
"endpoints" : {
|
|
7962
8455
|
"ap-northeast-1" : { },
|
|
@@ -8147,6 +8640,12 @@
|
|
|
8147
8640
|
"cn-northwest-1" : { }
|
|
8148
8641
|
}
|
|
8149
8642
|
},
|
|
8643
|
+
"applicationinsights" : {
|
|
8644
|
+
"endpoints" : {
|
|
8645
|
+
"cn-north-1" : { },
|
|
8646
|
+
"cn-northwest-1" : { }
|
|
8647
|
+
}
|
|
8648
|
+
},
|
|
8150
8649
|
"appmesh" : {
|
|
8151
8650
|
"endpoints" : {
|
|
8152
8651
|
"cn-north-1" : { },
|
|
@@ -8557,6 +9056,11 @@
|
|
|
8557
9056
|
"cn-northwest-1" : { }
|
|
8558
9057
|
}
|
|
8559
9058
|
},
|
|
9059
|
+
"iotsitewise" : {
|
|
9060
|
+
"endpoints" : {
|
|
9061
|
+
"cn-north-1" : { }
|
|
9062
|
+
}
|
|
9063
|
+
},
|
|
8560
9064
|
"kafka" : {
|
|
8561
9065
|
"endpoints" : {
|
|
8562
9066
|
"cn-north-1" : { },
|
|
@@ -9138,6 +9642,22 @@
|
|
|
9138
9642
|
}
|
|
9139
9643
|
}
|
|
9140
9644
|
},
|
|
9645
|
+
"applicationinsights" : {
|
|
9646
|
+
"endpoints" : {
|
|
9647
|
+
"us-gov-east-1" : {
|
|
9648
|
+
"credentialScope" : {
|
|
9649
|
+
"region" : "us-gov-east-1"
|
|
9650
|
+
},
|
|
9651
|
+
"hostname" : "applicationinsights.us-gov-east-1.amazonaws.com"
|
|
9652
|
+
},
|
|
9653
|
+
"us-gov-west-1" : {
|
|
9654
|
+
"credentialScope" : {
|
|
9655
|
+
"region" : "us-gov-west-1"
|
|
9656
|
+
},
|
|
9657
|
+
"hostname" : "applicationinsights.us-gov-west-1.amazonaws.com"
|
|
9658
|
+
}
|
|
9659
|
+
}
|
|
9660
|
+
},
|
|
9141
9661
|
"appstream2" : {
|
|
9142
9662
|
"defaults" : {
|
|
9143
9663
|
"credentialScope" : {
|
|
@@ -9152,7 +9672,13 @@
|
|
|
9152
9672
|
},
|
|
9153
9673
|
"hostname" : "appstream2-fips.us-gov-west-1.amazonaws.com"
|
|
9154
9674
|
},
|
|
9155
|
-
"us-gov-west-1" : { }
|
|
9675
|
+
"us-gov-west-1" : { },
|
|
9676
|
+
"us-gov-west-1-fips" : {
|
|
9677
|
+
"credentialScope" : {
|
|
9678
|
+
"region" : "us-gov-west-1"
|
|
9679
|
+
},
|
|
9680
|
+
"hostname" : "appstream2-fips.us-gov-west-1.amazonaws.com"
|
|
9681
|
+
}
|
|
9156
9682
|
}
|
|
9157
9683
|
},
|
|
9158
9684
|
"athena" : {
|
|
@@ -9318,7 +9844,19 @@
|
|
|
9318
9844
|
"hostname" : "codecommit-fips.us-gov-west-1.amazonaws.com"
|
|
9319
9845
|
},
|
|
9320
9846
|
"us-gov-east-1" : { },
|
|
9321
|
-
"us-gov-
|
|
9847
|
+
"us-gov-east-1-fips" : {
|
|
9848
|
+
"credentialScope" : {
|
|
9849
|
+
"region" : "us-gov-east-1"
|
|
9850
|
+
},
|
|
9851
|
+
"hostname" : "codecommit-fips.us-gov-east-1.amazonaws.com"
|
|
9852
|
+
},
|
|
9853
|
+
"us-gov-west-1" : { },
|
|
9854
|
+
"us-gov-west-1-fips" : {
|
|
9855
|
+
"credentialScope" : {
|
|
9856
|
+
"region" : "us-gov-west-1"
|
|
9857
|
+
},
|
|
9858
|
+
"hostname" : "codecommit-fips.us-gov-west-1.amazonaws.com"
|
|
9859
|
+
}
|
|
9322
9860
|
}
|
|
9323
9861
|
},
|
|
9324
9862
|
"codedeploy" : {
|
|
@@ -9510,7 +10048,19 @@
|
|
|
9510
10048
|
"hostname" : "dms.us-gov-west-1.amazonaws.com"
|
|
9511
10049
|
},
|
|
9512
10050
|
"us-gov-east-1" : { },
|
|
9513
|
-
"us-gov-
|
|
10051
|
+
"us-gov-east-1-fips" : {
|
|
10052
|
+
"credentialScope" : {
|
|
10053
|
+
"region" : "us-gov-east-1"
|
|
10054
|
+
},
|
|
10055
|
+
"hostname" : "dms.us-gov-east-1.amazonaws.com"
|
|
10056
|
+
},
|
|
10057
|
+
"us-gov-west-1" : { },
|
|
10058
|
+
"us-gov-west-1-fips" : {
|
|
10059
|
+
"credentialScope" : {
|
|
10060
|
+
"region" : "us-gov-west-1"
|
|
10061
|
+
},
|
|
10062
|
+
"hostname" : "dms.us-gov-west-1.amazonaws.com"
|
|
10063
|
+
}
|
|
9514
10064
|
}
|
|
9515
10065
|
},
|
|
9516
10066
|
"docdb" : {
|
|
@@ -9629,7 +10179,13 @@
|
|
|
9629
10179
|
"hostname" : "elasticache.us-gov-west-1.amazonaws.com"
|
|
9630
10180
|
},
|
|
9631
10181
|
"us-gov-east-1" : { },
|
|
9632
|
-
"us-gov-west-1" : { }
|
|
10182
|
+
"us-gov-west-1" : { },
|
|
10183
|
+
"us-gov-west-1-fips" : {
|
|
10184
|
+
"credentialScope" : {
|
|
10185
|
+
"region" : "us-gov-west-1"
|
|
10186
|
+
},
|
|
10187
|
+
"hostname" : "elasticache.us-gov-west-1.amazonaws.com"
|
|
10188
|
+
}
|
|
9633
10189
|
}
|
|
9634
10190
|
},
|
|
9635
10191
|
"elasticbeanstalk" : {
|
|
@@ -9726,7 +10282,19 @@
|
|
|
9726
10282
|
"hostname" : "es-fips.us-gov-west-1.amazonaws.com"
|
|
9727
10283
|
},
|
|
9728
10284
|
"us-gov-east-1" : { },
|
|
9729
|
-
"us-gov-
|
|
10285
|
+
"us-gov-east-1-fips" : {
|
|
10286
|
+
"credentialScope" : {
|
|
10287
|
+
"region" : "us-gov-east-1"
|
|
10288
|
+
},
|
|
10289
|
+
"hostname" : "es-fips.us-gov-east-1.amazonaws.com"
|
|
10290
|
+
},
|
|
10291
|
+
"us-gov-west-1" : { },
|
|
10292
|
+
"us-gov-west-1-fips" : {
|
|
10293
|
+
"credentialScope" : {
|
|
10294
|
+
"region" : "us-gov-west-1"
|
|
10295
|
+
},
|
|
10296
|
+
"hostname" : "es-fips.us-gov-west-1.amazonaws.com"
|
|
10297
|
+
}
|
|
9730
10298
|
}
|
|
9731
10299
|
},
|
|
9732
10300
|
"events" : {
|
|
@@ -9798,6 +10366,18 @@
|
|
|
9798
10366
|
},
|
|
9799
10367
|
"hostname" : "fsx-fips.us-gov-west-1.amazonaws.com"
|
|
9800
10368
|
},
|
|
10369
|
+
"fips-us-gov-east-1" : {
|
|
10370
|
+
"credentialScope" : {
|
|
10371
|
+
"region" : "us-gov-east-1"
|
|
10372
|
+
},
|
|
10373
|
+
"hostname" : "fsx-fips.us-gov-east-1.amazonaws.com"
|
|
10374
|
+
},
|
|
10375
|
+
"fips-us-gov-west-1" : {
|
|
10376
|
+
"credentialScope" : {
|
|
10377
|
+
"region" : "us-gov-west-1"
|
|
10378
|
+
},
|
|
10379
|
+
"hostname" : "fsx-fips.us-gov-west-1.amazonaws.com"
|
|
10380
|
+
},
|
|
9801
10381
|
"us-gov-east-1" : { },
|
|
9802
10382
|
"us-gov-west-1" : { }
|
|
9803
10383
|
}
|
|
@@ -9915,6 +10495,12 @@
|
|
|
9915
10495
|
},
|
|
9916
10496
|
"hostname" : "iam.us-gov.amazonaws.com"
|
|
9917
10497
|
},
|
|
10498
|
+
"aws-us-gov-global-fips" : {
|
|
10499
|
+
"credentialScope" : {
|
|
10500
|
+
"region" : "us-gov-west-1"
|
|
10501
|
+
},
|
|
10502
|
+
"hostname" : "iam.us-gov.amazonaws.com"
|
|
10503
|
+
},
|
|
9918
10504
|
"iam-govcloud-fips" : {
|
|
9919
10505
|
"credentialScope" : {
|
|
9920
10506
|
"region" : "us-gov-west-1"
|
|
@@ -10010,6 +10596,11 @@
|
|
|
10010
10596
|
"us-gov-west-1" : { }
|
|
10011
10597
|
}
|
|
10012
10598
|
},
|
|
10599
|
+
"iotsitewise" : {
|
|
10600
|
+
"endpoints" : {
|
|
10601
|
+
"us-gov-west-1" : { }
|
|
10602
|
+
}
|
|
10603
|
+
},
|
|
10013
10604
|
"kafka" : {
|
|
10014
10605
|
"endpoints" : {
|
|
10015
10606
|
"us-gov-east-1" : { },
|
|
@@ -10018,6 +10609,12 @@
|
|
|
10018
10609
|
},
|
|
10019
10610
|
"kendra" : {
|
|
10020
10611
|
"endpoints" : {
|
|
10612
|
+
"fips-us-gov-west-1" : {
|
|
10613
|
+
"credentialScope" : {
|
|
10614
|
+
"region" : "us-gov-west-1"
|
|
10615
|
+
},
|
|
10616
|
+
"hostname" : "kendra-fips.us-gov-west-1.amazonaws.com"
|
|
10617
|
+
},
|
|
10021
10618
|
"us-gov-west-1" : { }
|
|
10022
10619
|
}
|
|
10023
10620
|
},
|
|
@@ -10052,7 +10649,19 @@
|
|
|
10052
10649
|
"hostname" : "kms-fips.us-gov-west-1.amazonaws.com"
|
|
10053
10650
|
},
|
|
10054
10651
|
"us-gov-east-1" : { },
|
|
10055
|
-
"us-gov-
|
|
10652
|
+
"us-gov-east-1-fips" : {
|
|
10653
|
+
"credentialScope" : {
|
|
10654
|
+
"region" : "us-gov-east-1"
|
|
10655
|
+
},
|
|
10656
|
+
"hostname" : "kms-fips.us-gov-east-1.amazonaws.com"
|
|
10657
|
+
},
|
|
10658
|
+
"us-gov-west-1" : { },
|
|
10659
|
+
"us-gov-west-1-fips" : {
|
|
10660
|
+
"credentialScope" : {
|
|
10661
|
+
"region" : "us-gov-west-1"
|
|
10662
|
+
},
|
|
10663
|
+
"hostname" : "kms-fips.us-gov-west-1.amazonaws.com"
|
|
10664
|
+
}
|
|
10056
10665
|
}
|
|
10057
10666
|
},
|
|
10058
10667
|
"lakeformation" : {
|
|
@@ -10225,6 +10834,18 @@
|
|
|
10225
10834
|
"us-gov-west-1" : { }
|
|
10226
10835
|
}
|
|
10227
10836
|
},
|
|
10837
|
+
"networkmanager" : {
|
|
10838
|
+
"endpoints" : {
|
|
10839
|
+
"aws-us-gov-global" : {
|
|
10840
|
+
"credentialScope" : {
|
|
10841
|
+
"region" : "us-gov-west-1"
|
|
10842
|
+
},
|
|
10843
|
+
"hostname" : "networkmanager.us-gov-west-1.amazonaws.com"
|
|
10844
|
+
}
|
|
10845
|
+
},
|
|
10846
|
+
"isRegionalized" : false,
|
|
10847
|
+
"partitionEndpoint" : "aws-us-gov-global"
|
|
10848
|
+
},
|
|
10228
10849
|
"oidc" : {
|
|
10229
10850
|
"endpoints" : {
|
|
10230
10851
|
"us-gov-west-1" : {
|
|
@@ -10338,7 +10959,19 @@
|
|
|
10338
10959
|
"hostname" : "rds.us-gov-west-1.amazonaws.com"
|
|
10339
10960
|
},
|
|
10340
10961
|
"us-gov-east-1" : { },
|
|
10341
|
-
"us-gov-
|
|
10962
|
+
"us-gov-east-1-fips" : {
|
|
10963
|
+
"credentialScope" : {
|
|
10964
|
+
"region" : "us-gov-east-1"
|
|
10965
|
+
},
|
|
10966
|
+
"hostname" : "rds.us-gov-east-1.amazonaws.com"
|
|
10967
|
+
},
|
|
10968
|
+
"us-gov-west-1" : { },
|
|
10969
|
+
"us-gov-west-1-fips" : {
|
|
10970
|
+
"credentialScope" : {
|
|
10971
|
+
"region" : "us-gov-west-1"
|
|
10972
|
+
},
|
|
10973
|
+
"hostname" : "rds.us-gov-west-1.amazonaws.com"
|
|
10974
|
+
}
|
|
10342
10975
|
}
|
|
10343
10976
|
},
|
|
10344
10977
|
"redshift" : {
|
|
@@ -10365,7 +10998,13 @@
|
|
|
10365
10998
|
},
|
|
10366
10999
|
"hostname" : "rekognition-fips.us-gov-west-1.amazonaws.com"
|
|
10367
11000
|
},
|
|
10368
|
-
"us-gov-west-1" : { }
|
|
11001
|
+
"us-gov-west-1" : { },
|
|
11002
|
+
"us-gov-west-1-fips" : {
|
|
11003
|
+
"credentialScope" : {
|
|
11004
|
+
"region" : "us-gov-west-1"
|
|
11005
|
+
},
|
|
11006
|
+
"hostname" : "rekognition-fips.us-gov-west-1.amazonaws.com"
|
|
11007
|
+
}
|
|
10369
11008
|
}
|
|
10370
11009
|
},
|
|
10371
11010
|
"resource-groups" : {
|
|
@@ -10612,7 +11251,19 @@
|
|
|
10612
11251
|
"hostname" : "servicediscovery-fips.us-gov-west-1.amazonaws.com"
|
|
10613
11252
|
},
|
|
10614
11253
|
"us-gov-east-1" : { },
|
|
10615
|
-
"us-gov-
|
|
11254
|
+
"us-gov-east-1-fips" : {
|
|
11255
|
+
"credentialScope" : {
|
|
11256
|
+
"region" : "us-gov-east-1"
|
|
11257
|
+
},
|
|
11258
|
+
"hostname" : "servicediscovery-fips.us-gov-east-1.amazonaws.com"
|
|
11259
|
+
},
|
|
11260
|
+
"us-gov-west-1" : { },
|
|
11261
|
+
"us-gov-west-1-fips" : {
|
|
11262
|
+
"credentialScope" : {
|
|
11263
|
+
"region" : "us-gov-west-1"
|
|
11264
|
+
},
|
|
11265
|
+
"hostname" : "servicediscovery-fips.us-gov-west-1.amazonaws.com"
|
|
11266
|
+
}
|
|
10616
11267
|
}
|
|
10617
11268
|
},
|
|
10618
11269
|
"servicequotas" : {
|
|
@@ -10752,7 +11403,19 @@
|
|
|
10752
11403
|
"hostname" : "storagegateway-fips.us-gov-west-1.amazonaws.com"
|
|
10753
11404
|
},
|
|
10754
11405
|
"us-gov-east-1" : { },
|
|
10755
|
-
"us-gov-
|
|
11406
|
+
"us-gov-east-1-fips" : {
|
|
11407
|
+
"credentialScope" : {
|
|
11408
|
+
"region" : "us-gov-east-1"
|
|
11409
|
+
},
|
|
11410
|
+
"hostname" : "storagegateway-fips.us-gov-east-1.amazonaws.com"
|
|
11411
|
+
},
|
|
11412
|
+
"us-gov-west-1" : { },
|
|
11413
|
+
"us-gov-west-1-fips" : {
|
|
11414
|
+
"credentialScope" : {
|
|
11415
|
+
"region" : "us-gov-west-1"
|
|
11416
|
+
},
|
|
11417
|
+
"hostname" : "storagegateway-fips.us-gov-west-1.amazonaws.com"
|
|
11418
|
+
}
|
|
10756
11419
|
}
|
|
10757
11420
|
},
|
|
10758
11421
|
"streams.dynamodb" : {
|
|
@@ -11077,7 +11740,13 @@
|
|
|
11077
11740
|
},
|
|
11078
11741
|
"hostname" : "dms.us-iso-east-1.c2s.ic.gov"
|
|
11079
11742
|
},
|
|
11080
|
-
"us-iso-east-1" : { }
|
|
11743
|
+
"us-iso-east-1" : { },
|
|
11744
|
+
"us-iso-east-1-fips" : {
|
|
11745
|
+
"credentialScope" : {
|
|
11746
|
+
"region" : "us-iso-east-1"
|
|
11747
|
+
},
|
|
11748
|
+
"hostname" : "dms.us-iso-east-1.c2s.ic.gov"
|
|
11749
|
+
}
|
|
11081
11750
|
}
|
|
11082
11751
|
},
|
|
11083
11752
|
"ds" : {
|
|
@@ -11093,6 +11762,11 @@
|
|
|
11093
11762
|
"us-iso-west-1" : { }
|
|
11094
11763
|
}
|
|
11095
11764
|
},
|
|
11765
|
+
"ebs" : {
|
|
11766
|
+
"endpoints" : {
|
|
11767
|
+
"us-iso-east-1" : { }
|
|
11768
|
+
}
|
|
11769
|
+
},
|
|
11096
11770
|
"ec2" : {
|
|
11097
11771
|
"endpoints" : {
|
|
11098
11772
|
"us-iso-east-1" : { },
|
|
@@ -11194,7 +11868,19 @@
|
|
|
11194
11868
|
"hostname" : "kms-fips.us-iso-east-1.c2s.ic.gov"
|
|
11195
11869
|
},
|
|
11196
11870
|
"us-iso-east-1" : { },
|
|
11197
|
-
"us-iso-
|
|
11871
|
+
"us-iso-east-1-fips" : {
|
|
11872
|
+
"credentialScope" : {
|
|
11873
|
+
"region" : "us-iso-east-1"
|
|
11874
|
+
},
|
|
11875
|
+
"hostname" : "kms-fips.us-iso-east-1.c2s.ic.gov"
|
|
11876
|
+
},
|
|
11877
|
+
"us-iso-west-1" : { },
|
|
11878
|
+
"us-iso-west-1-fips" : {
|
|
11879
|
+
"credentialScope" : {
|
|
11880
|
+
"region" : "us-iso-west-1"
|
|
11881
|
+
},
|
|
11882
|
+
"hostname" : "kms-fips.us-iso-west-1.c2s.ic.gov"
|
|
11883
|
+
}
|
|
11198
11884
|
}
|
|
11199
11885
|
},
|
|
11200
11886
|
"lambda" : {
|
|
@@ -11460,7 +12146,13 @@
|
|
|
11460
12146
|
},
|
|
11461
12147
|
"hostname" : "dms.us-isob-east-1.sc2s.sgov.gov"
|
|
11462
12148
|
},
|
|
11463
|
-
"us-isob-east-1" : { }
|
|
12149
|
+
"us-isob-east-1" : { },
|
|
12150
|
+
"us-isob-east-1-fips" : {
|
|
12151
|
+
"credentialScope" : {
|
|
12152
|
+
"region" : "us-isob-east-1"
|
|
12153
|
+
},
|
|
12154
|
+
"hostname" : "dms.us-isob-east-1.sc2s.sgov.gov"
|
|
12155
|
+
}
|
|
11464
12156
|
}
|
|
11465
12157
|
},
|
|
11466
12158
|
"ds" : {
|
|
@@ -11476,6 +12168,11 @@
|
|
|
11476
12168
|
"us-isob-east-1" : { }
|
|
11477
12169
|
}
|
|
11478
12170
|
},
|
|
12171
|
+
"ebs" : {
|
|
12172
|
+
"endpoints" : {
|
|
12173
|
+
"us-isob-east-1" : { }
|
|
12174
|
+
}
|
|
12175
|
+
},
|
|
11479
12176
|
"ec2" : {
|
|
11480
12177
|
"defaults" : {
|
|
11481
12178
|
"protocols" : [ "http", "https" ]
|
|
@@ -11551,7 +12248,13 @@
|
|
|
11551
12248
|
},
|
|
11552
12249
|
"hostname" : "kms-fips.us-isob-east-1.sc2s.sgov.gov"
|
|
11553
12250
|
},
|
|
11554
|
-
"us-isob-east-1" : { }
|
|
12251
|
+
"us-isob-east-1" : { },
|
|
12252
|
+
"us-isob-east-1-fips" : {
|
|
12253
|
+
"credentialScope" : {
|
|
12254
|
+
"region" : "us-isob-east-1"
|
|
12255
|
+
},
|
|
12256
|
+
"hostname" : "kms-fips.us-isob-east-1.sc2s.sgov.gov"
|
|
12257
|
+
}
|
|
11555
12258
|
}
|
|
11556
12259
|
},
|
|
11557
12260
|
"lambda" : {
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-partitions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.521.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-10-
|
|
11
|
+
date: 2021-10-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Provides interfaces to enumerate AWS partitions, regions, and services.
|
|
14
14
|
email:
|