aws-partitions 1.232.0 → 1.240.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/lib/aws-partitions.rb +7 -0
- data/lib/aws-partitions/endpoint_provider.rb +17 -2
- data/lib/aws-partitions/service.rb +1 -1
- data/partitions.json +184 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a2b673c698ea49b23a4e1bd773dbc5b522400634
|
|
4
|
+
data.tar.gz: f62f46979087d737fe929f48e0c2ab2e6816d638
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e03d6b357e526d91332fb3d813fcb0a1dfe285f9fab730e9730909d15a0a783365430f8319ca0a0a2e287a39d612ab4d63307251cb809efd557df92ff0ba89ec
|
|
7
|
+
data.tar.gz: 58f320fc4642100e5c5051c6412018e62bdae367a98549a2f1bfd7bd42f1b0c140daab3d338c8edb1dfd323f10bcf3dacee5e0e6f19b6c8eaa5871973e089f31
|
data/lib/aws-partitions.rb
CHANGED
|
@@ -257,6 +257,7 @@ module Aws
|
|
|
257
257
|
'CodeDeploy' => 'codedeploy',
|
|
258
258
|
'CodePipeline' => 'codepipeline',
|
|
259
259
|
'CodeStar' => 'codestar',
|
|
260
|
+
'CodeStarNotifications' => 'codestar-notifications',
|
|
260
261
|
'CognitoIdentity' => 'cognito-identity',
|
|
261
262
|
'CognitoIdentityProvider' => 'cognito-idp',
|
|
262
263
|
'CognitoSync' => 'cognito-sync',
|
|
@@ -268,6 +269,7 @@ module Aws
|
|
|
268
269
|
'CostandUsageReportService' => 'cur',
|
|
269
270
|
'DAX' => 'dax',
|
|
270
271
|
'DLM' => 'dlm',
|
|
272
|
+
'DataExchange' => 'dataexchange',
|
|
271
273
|
'DataPipeline' => 'datapipeline',
|
|
272
274
|
'DataSync' => 'datasync',
|
|
273
275
|
'DatabaseMigrationService' => 'dms',
|
|
@@ -335,6 +337,7 @@ module Aws
|
|
|
335
337
|
'MachineLearning' => 'machinelearning',
|
|
336
338
|
'Macie' => 'macie',
|
|
337
339
|
'ManagedBlockchain' => 'managedblockchain',
|
|
340
|
+
'MarketplaceCatalog' => 'catalog.marketplace',
|
|
338
341
|
'MarketplaceCommerceAnalytics' => 'marketplacecommerceanalytics',
|
|
339
342
|
'MarketplaceEntitlementService' => 'entitlement.marketplace',
|
|
340
343
|
'MarketplaceMetering' => 'metering.marketplace',
|
|
@@ -378,14 +381,18 @@ module Aws
|
|
|
378
381
|
'S3' => 's3',
|
|
379
382
|
'S3Control' => 's3-control',
|
|
380
383
|
'SES' => 'email',
|
|
384
|
+
'SESV2' => 'email',
|
|
381
385
|
'SMS' => 'sms',
|
|
382
386
|
'SNS' => 'sns',
|
|
383
387
|
'SQS' => 'sqs',
|
|
384
388
|
'SSM' => 'ssm',
|
|
389
|
+
'SSO' => 'portal.sso',
|
|
390
|
+
'SSOOIDC' => 'oidc',
|
|
385
391
|
'STS' => 'sts',
|
|
386
392
|
'SWF' => 'swf',
|
|
387
393
|
'SageMaker' => 'api.sagemaker',
|
|
388
394
|
'SageMakerRuntime' => 'runtime.sagemaker',
|
|
395
|
+
'SavingsPlans' => 'savingsplans',
|
|
389
396
|
'SecretsManager' => 'secretsmanager',
|
|
390
397
|
'SecurityHub' => 'securityhub',
|
|
391
398
|
'ServerlessApplicationRepository' => 'serverlessrepo',
|
|
@@ -25,6 +25,12 @@ module Aws
|
|
|
25
25
|
us-west-2
|
|
26
26
|
)
|
|
27
27
|
|
|
28
|
+
# Can be removed once S3 endpoint is updated
|
|
29
|
+
S3_IAD_REGIONAL = {
|
|
30
|
+
"hostname" => "s3.us-east-1.amazonaws.com",
|
|
31
|
+
"signatureVersions" => [ "s3", "s3v4" ]
|
|
32
|
+
}
|
|
33
|
+
|
|
28
34
|
# Intentionally marked private. The format of the endpoint rules
|
|
29
35
|
# is an implementation detail.
|
|
30
36
|
# @api private
|
|
@@ -39,7 +45,7 @@ module Aws
|
|
|
39
45
|
# legacy regions) or `regional` mode for using regional endpoint for supported regions
|
|
40
46
|
# except 'aws-global'
|
|
41
47
|
# @api private Use the static class methods instead.
|
|
42
|
-
def resolve(region, service, sts_regional_endpoints
|
|
48
|
+
def resolve(region, service, sts_regional_endpoints)
|
|
43
49
|
"https://" + endpoint_for(region, service, sts_regional_endpoints)
|
|
44
50
|
end
|
|
45
51
|
|
|
@@ -80,6 +86,11 @@ module Aws
|
|
|
80
86
|
region = service_cfg.fetch("partitionEndpoint", region)
|
|
81
87
|
end
|
|
82
88
|
|
|
89
|
+
# Can be removed once S3 endpoint is updated
|
|
90
|
+
if (service == 's3') && (region == "us-east-1")
|
|
91
|
+
service_cfg["endpoints"][region] = S3_IAD_REGIONAL
|
|
92
|
+
end
|
|
93
|
+
|
|
83
94
|
# Check for service/region level endpoint.
|
|
84
95
|
endpoint = service_cfg.fetch("endpoints", {}).
|
|
85
96
|
fetch(region, {}).fetch("hostname", endpoint)
|
|
@@ -121,7 +132,11 @@ module Aws
|
|
|
121
132
|
|
|
122
133
|
class << self
|
|
123
134
|
|
|
124
|
-
def resolve(
|
|
135
|
+
def resolve(
|
|
136
|
+
region,
|
|
137
|
+
service,
|
|
138
|
+
sts_regional_endpoints = 'legacy'
|
|
139
|
+
)
|
|
125
140
|
default_provider.resolve(region, service, sts_regional_endpoints)
|
|
126
141
|
end
|
|
127
142
|
|
|
@@ -35,7 +35,7 @@ module Aws
|
|
|
35
35
|
|
|
36
36
|
# Returns `false` if the service operates with a single global
|
|
37
37
|
# endpoint for the current partition, returns `true` if the service
|
|
38
|
-
# is available in
|
|
38
|
+
# is available in multiple regions.
|
|
39
39
|
#
|
|
40
40
|
# Some services have both a partition endpoint and regional endpoints.
|
|
41
41
|
#
|
data/partitions.json
CHANGED
|
@@ -111,6 +111,7 @@
|
|
|
111
111
|
"eu-west-2" : { },
|
|
112
112
|
"eu-west-3" : { },
|
|
113
113
|
"me-south-1" : { },
|
|
114
|
+
"sa-east-1" : { },
|
|
114
115
|
"us-east-1" : { },
|
|
115
116
|
"us-east-2" : { },
|
|
116
117
|
"us-west-1" : { },
|
|
@@ -418,8 +419,11 @@
|
|
|
418
419
|
"eu-north-1" : { },
|
|
419
420
|
"eu-west-1" : { },
|
|
420
421
|
"eu-west-2" : { },
|
|
422
|
+
"eu-west-3" : { },
|
|
423
|
+
"me-south-1" : { },
|
|
421
424
|
"us-east-1" : { },
|
|
422
425
|
"us-east-2" : { },
|
|
426
|
+
"us-west-1" : { },
|
|
423
427
|
"us-west-2" : { }
|
|
424
428
|
}
|
|
425
429
|
},
|
|
@@ -758,6 +762,7 @@
|
|
|
758
762
|
},
|
|
759
763
|
"hostname" : "codecommit-fips.ca-central-1.amazonaws.com"
|
|
760
764
|
},
|
|
765
|
+
"me-south-1" : { },
|
|
761
766
|
"sa-east-1" : { },
|
|
762
767
|
"us-east-1" : { },
|
|
763
768
|
"us-east-2" : { },
|
|
@@ -997,6 +1002,21 @@
|
|
|
997
1002
|
"us-west-2" : { }
|
|
998
1003
|
}
|
|
999
1004
|
},
|
|
1005
|
+
"dataexchange" : {
|
|
1006
|
+
"endpoints" : {
|
|
1007
|
+
"ap-northeast-1" : { },
|
|
1008
|
+
"ap-northeast-2" : { },
|
|
1009
|
+
"ap-southeast-1" : { },
|
|
1010
|
+
"ap-southeast-2" : { },
|
|
1011
|
+
"eu-central-1" : { },
|
|
1012
|
+
"eu-west-1" : { },
|
|
1013
|
+
"eu-west-2" : { },
|
|
1014
|
+
"us-east-1" : { },
|
|
1015
|
+
"us-east-2" : { },
|
|
1016
|
+
"us-west-1" : { },
|
|
1017
|
+
"us-west-2" : { }
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1000
1020
|
"datapipeline" : {
|
|
1001
1021
|
"endpoints" : {
|
|
1002
1022
|
"ap-northeast-1" : { },
|
|
@@ -1056,6 +1076,8 @@
|
|
|
1056
1076
|
"ap-southeast-2" : { },
|
|
1057
1077
|
"eu-central-1" : { },
|
|
1058
1078
|
"eu-west-1" : { },
|
|
1079
|
+
"eu-west-2" : { },
|
|
1080
|
+
"eu-west-3" : { },
|
|
1059
1081
|
"sa-east-1" : { },
|
|
1060
1082
|
"us-east-1" : { },
|
|
1061
1083
|
"us-east-2" : { },
|
|
@@ -1195,6 +1217,7 @@
|
|
|
1195
1217
|
},
|
|
1196
1218
|
"ds" : {
|
|
1197
1219
|
"endpoints" : {
|
|
1220
|
+
"ap-east-1" : { },
|
|
1198
1221
|
"ap-northeast-1" : { },
|
|
1199
1222
|
"ap-northeast-2" : { },
|
|
1200
1223
|
"ap-south-1" : { },
|
|
@@ -1540,6 +1563,7 @@
|
|
|
1540
1563
|
"eu-west-1" : { },
|
|
1541
1564
|
"eu-west-2" : { },
|
|
1542
1565
|
"eu-west-3" : { },
|
|
1566
|
+
"me-south-1" : { },
|
|
1543
1567
|
"sa-east-1" : { },
|
|
1544
1568
|
"us-east-1" : { },
|
|
1545
1569
|
"us-east-2" : { },
|
|
@@ -1554,11 +1578,16 @@
|
|
|
1554
1578
|
"endpoints" : {
|
|
1555
1579
|
"ap-northeast-1" : { },
|
|
1556
1580
|
"ap-northeast-2" : { },
|
|
1581
|
+
"ap-south-1" : { },
|
|
1557
1582
|
"ap-southeast-1" : { },
|
|
1558
1583
|
"ap-southeast-2" : { },
|
|
1584
|
+
"ca-central-1" : { },
|
|
1559
1585
|
"eu-central-1" : { },
|
|
1586
|
+
"eu-north-1" : { },
|
|
1560
1587
|
"eu-west-1" : { },
|
|
1561
1588
|
"eu-west-2" : { },
|
|
1589
|
+
"eu-west-3" : { },
|
|
1590
|
+
"sa-east-1" : { },
|
|
1562
1591
|
"us-east-1" : { },
|
|
1563
1592
|
"us-east-2" : { },
|
|
1564
1593
|
"us-west-1" : { },
|
|
@@ -2012,6 +2041,9 @@
|
|
|
2012
2041
|
"lakeformation" : {
|
|
2013
2042
|
"endpoints" : {
|
|
2014
2043
|
"ap-northeast-1" : { },
|
|
2044
|
+
"ap-south-1" : { },
|
|
2045
|
+
"ap-southeast-1" : { },
|
|
2046
|
+
"ap-southeast-2" : { },
|
|
2015
2047
|
"eu-west-1" : { },
|
|
2016
2048
|
"us-east-1" : { },
|
|
2017
2049
|
"us-east-2" : { },
|
|
@@ -2354,6 +2386,12 @@
|
|
|
2354
2386
|
},
|
|
2355
2387
|
"hostname" : "rds.ap-southeast-2.amazonaws.com"
|
|
2356
2388
|
},
|
|
2389
|
+
"ca-central-1" : {
|
|
2390
|
+
"credentialScope" : {
|
|
2391
|
+
"region" : "ca-central-1"
|
|
2392
|
+
},
|
|
2393
|
+
"hostname" : "rds.ca-central-1.amazonaws.com"
|
|
2394
|
+
},
|
|
2357
2395
|
"eu-central-1" : {
|
|
2358
2396
|
"credentialScope" : {
|
|
2359
2397
|
"region" : "eu-central-1"
|
|
@@ -2378,6 +2416,12 @@
|
|
|
2378
2416
|
},
|
|
2379
2417
|
"hostname" : "rds.eu-west-2.amazonaws.com"
|
|
2380
2418
|
},
|
|
2419
|
+
"me-south-1" : {
|
|
2420
|
+
"credentialScope" : {
|
|
2421
|
+
"region" : "me-south-1"
|
|
2422
|
+
},
|
|
2423
|
+
"hostname" : "rds.me-south-1.amazonaws.com"
|
|
2424
|
+
},
|
|
2381
2425
|
"us-east-1" : {
|
|
2382
2426
|
"credentialScope" : {
|
|
2383
2427
|
"region" : "us-east-1"
|
|
@@ -2398,6 +2442,64 @@
|
|
|
2398
2442
|
}
|
|
2399
2443
|
}
|
|
2400
2444
|
},
|
|
2445
|
+
"oidc" : {
|
|
2446
|
+
"endpoints" : {
|
|
2447
|
+
"ap-southeast-1" : {
|
|
2448
|
+
"credentialScope" : {
|
|
2449
|
+
"region" : "ap-southeast-1"
|
|
2450
|
+
},
|
|
2451
|
+
"hostname" : "oidc.ap-southeast-1.amazonaws.com"
|
|
2452
|
+
},
|
|
2453
|
+
"ap-southeast-2" : {
|
|
2454
|
+
"credentialScope" : {
|
|
2455
|
+
"region" : "ap-southeast-2"
|
|
2456
|
+
},
|
|
2457
|
+
"hostname" : "oidc.ap-southeast-2.amazonaws.com"
|
|
2458
|
+
},
|
|
2459
|
+
"ca-central-1" : {
|
|
2460
|
+
"credentialScope" : {
|
|
2461
|
+
"region" : "ca-central-1"
|
|
2462
|
+
},
|
|
2463
|
+
"hostname" : "oidc.ca-central-1.amazonaws.com"
|
|
2464
|
+
},
|
|
2465
|
+
"eu-central-1" : {
|
|
2466
|
+
"credentialScope" : {
|
|
2467
|
+
"region" : "eu-central-1"
|
|
2468
|
+
},
|
|
2469
|
+
"hostname" : "oidc.eu-central-1.amazonaws.com"
|
|
2470
|
+
},
|
|
2471
|
+
"eu-west-1" : {
|
|
2472
|
+
"credentialScope" : {
|
|
2473
|
+
"region" : "eu-west-1"
|
|
2474
|
+
},
|
|
2475
|
+
"hostname" : "oidc.eu-west-1.amazonaws.com"
|
|
2476
|
+
},
|
|
2477
|
+
"eu-west-2" : {
|
|
2478
|
+
"credentialScope" : {
|
|
2479
|
+
"region" : "eu-west-2"
|
|
2480
|
+
},
|
|
2481
|
+
"hostname" : "oidc.eu-west-2.amazonaws.com"
|
|
2482
|
+
},
|
|
2483
|
+
"us-east-1" : {
|
|
2484
|
+
"credentialScope" : {
|
|
2485
|
+
"region" : "us-east-1"
|
|
2486
|
+
},
|
|
2487
|
+
"hostname" : "oidc.us-east-1.amazonaws.com"
|
|
2488
|
+
},
|
|
2489
|
+
"us-east-2" : {
|
|
2490
|
+
"credentialScope" : {
|
|
2491
|
+
"region" : "us-east-2"
|
|
2492
|
+
},
|
|
2493
|
+
"hostname" : "oidc.us-east-2.amazonaws.com"
|
|
2494
|
+
},
|
|
2495
|
+
"us-west-2" : {
|
|
2496
|
+
"credentialScope" : {
|
|
2497
|
+
"region" : "us-west-2"
|
|
2498
|
+
},
|
|
2499
|
+
"hostname" : "oidc.us-west-2.amazonaws.com"
|
|
2500
|
+
}
|
|
2501
|
+
}
|
|
2502
|
+
},
|
|
2401
2503
|
"opsworks" : {
|
|
2402
2504
|
"endpoints" : {
|
|
2403
2505
|
"ap-northeast-1" : { },
|
|
@@ -2477,6 +2579,64 @@
|
|
|
2477
2579
|
"us-west-2" : { }
|
|
2478
2580
|
}
|
|
2479
2581
|
},
|
|
2582
|
+
"portal.sso" : {
|
|
2583
|
+
"endpoints" : {
|
|
2584
|
+
"ap-southeast-1" : {
|
|
2585
|
+
"credentialScope" : {
|
|
2586
|
+
"region" : "ap-southeast-1"
|
|
2587
|
+
},
|
|
2588
|
+
"hostname" : "portal.sso.ap-southeast-1.amazonaws.com"
|
|
2589
|
+
},
|
|
2590
|
+
"ap-southeast-2" : {
|
|
2591
|
+
"credentialScope" : {
|
|
2592
|
+
"region" : "ap-southeast-2"
|
|
2593
|
+
},
|
|
2594
|
+
"hostname" : "portal.sso.ap-southeast-2.amazonaws.com"
|
|
2595
|
+
},
|
|
2596
|
+
"ca-central-1" : {
|
|
2597
|
+
"credentialScope" : {
|
|
2598
|
+
"region" : "ca-central-1"
|
|
2599
|
+
},
|
|
2600
|
+
"hostname" : "portal.sso.ca-central-1.amazonaws.com"
|
|
2601
|
+
},
|
|
2602
|
+
"eu-central-1" : {
|
|
2603
|
+
"credentialScope" : {
|
|
2604
|
+
"region" : "eu-central-1"
|
|
2605
|
+
},
|
|
2606
|
+
"hostname" : "portal.sso.eu-central-1.amazonaws.com"
|
|
2607
|
+
},
|
|
2608
|
+
"eu-west-1" : {
|
|
2609
|
+
"credentialScope" : {
|
|
2610
|
+
"region" : "eu-west-1"
|
|
2611
|
+
},
|
|
2612
|
+
"hostname" : "portal.sso.eu-west-1.amazonaws.com"
|
|
2613
|
+
},
|
|
2614
|
+
"eu-west-2" : {
|
|
2615
|
+
"credentialScope" : {
|
|
2616
|
+
"region" : "eu-west-2"
|
|
2617
|
+
},
|
|
2618
|
+
"hostname" : "portal.sso.eu-west-2.amazonaws.com"
|
|
2619
|
+
},
|
|
2620
|
+
"us-east-1" : {
|
|
2621
|
+
"credentialScope" : {
|
|
2622
|
+
"region" : "us-east-1"
|
|
2623
|
+
},
|
|
2624
|
+
"hostname" : "portal.sso.us-east-1.amazonaws.com"
|
|
2625
|
+
},
|
|
2626
|
+
"us-east-2" : {
|
|
2627
|
+
"credentialScope" : {
|
|
2628
|
+
"region" : "us-east-2"
|
|
2629
|
+
},
|
|
2630
|
+
"hostname" : "portal.sso.us-east-2.amazonaws.com"
|
|
2631
|
+
},
|
|
2632
|
+
"us-west-2" : {
|
|
2633
|
+
"credentialScope" : {
|
|
2634
|
+
"region" : "us-west-2"
|
|
2635
|
+
},
|
|
2636
|
+
"hostname" : "portal.sso.us-west-2.amazonaws.com"
|
|
2637
|
+
}
|
|
2638
|
+
}
|
|
2639
|
+
},
|
|
2480
2640
|
"projects.iot1click" : {
|
|
2481
2641
|
"endpoints" : {
|
|
2482
2642
|
"ap-northeast-1" : { },
|
|
@@ -2938,6 +3098,18 @@
|
|
|
2938
3098
|
}
|
|
2939
3099
|
}
|
|
2940
3100
|
},
|
|
3101
|
+
"savingsplans" : {
|
|
3102
|
+
"endpoints" : {
|
|
3103
|
+
"aws-global" : {
|
|
3104
|
+
"credentialScope" : {
|
|
3105
|
+
"region" : "us-east-1"
|
|
3106
|
+
},
|
|
3107
|
+
"hostname" : "savingsplans.amazonaws.com"
|
|
3108
|
+
}
|
|
3109
|
+
},
|
|
3110
|
+
"isRegionalized" : false,
|
|
3111
|
+
"partitionEndpoint" : "aws-global"
|
|
3112
|
+
},
|
|
2941
3113
|
"sdb" : {
|
|
2942
3114
|
"defaults" : {
|
|
2943
3115
|
"protocols" : [ "http", "https" ],
|
|
@@ -3531,6 +3703,7 @@
|
|
|
3531
3703
|
"protocols" : [ "https" ]
|
|
3532
3704
|
},
|
|
3533
3705
|
"endpoints" : {
|
|
3706
|
+
"ap-east-1" : { },
|
|
3534
3707
|
"ap-northeast-2" : { },
|
|
3535
3708
|
"ap-south-1" : { },
|
|
3536
3709
|
"ap-southeast-1" : { },
|
|
@@ -3540,6 +3713,7 @@
|
|
|
3540
3713
|
"eu-west-1" : { },
|
|
3541
3714
|
"eu-west-2" : { },
|
|
3542
3715
|
"eu-west-3" : { },
|
|
3716
|
+
"me-south-1" : { },
|
|
3543
3717
|
"sa-east-1" : { },
|
|
3544
3718
|
"us-east-1" : { },
|
|
3545
3719
|
"us-east-2" : { },
|
|
@@ -3831,6 +4005,11 @@
|
|
|
3831
4005
|
"cn-northwest-1" : { }
|
|
3832
4006
|
}
|
|
3833
4007
|
},
|
|
4008
|
+
"dax" : {
|
|
4009
|
+
"endpoints" : {
|
|
4010
|
+
"cn-northwest-1" : { }
|
|
4011
|
+
}
|
|
4012
|
+
},
|
|
3834
4013
|
"directconnect" : {
|
|
3835
4014
|
"endpoints" : {
|
|
3836
4015
|
"cn-north-1" : { },
|
|
@@ -4176,6 +4355,11 @@
|
|
|
4176
4355
|
"hostname" : "cn.transcribe.cn-northwest-1.amazonaws.com.cn"
|
|
4177
4356
|
}
|
|
4178
4357
|
}
|
|
4358
|
+
},
|
|
4359
|
+
"workspaces" : {
|
|
4360
|
+
"endpoints" : {
|
|
4361
|
+
"cn-northwest-1" : { }
|
|
4362
|
+
}
|
|
4179
4363
|
}
|
|
4180
4364
|
}
|
|
4181
4365
|
}, {
|
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.240.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: 2019-
|
|
11
|
+
date: 2019-11-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Provides interfaces to enumerate AWS partitions, regions, and services.
|
|
14
14
|
email:
|