aws-partitions 1.537.0 → 1.848.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 +1583 -0
- data/VERSION +1 -1
- data/lib/aws-partitions/partition.rb +10 -2
- data/lib/aws-partitions/partition_list.rb +50 -0
- data/lib/aws-partitions.rb +81 -1
- data/partitions-metadata.json +213 -0
- data/partitions.json +14430 -6028
- metadata +3 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.848.0
|
@@ -10,12 +10,20 @@ module Aws
|
|
10
10
|
def initialize(options = {})
|
11
11
|
@name = options[:name]
|
12
12
|
@regions = options[:regions]
|
13
|
+
@region_regex = options[:region_regex]
|
13
14
|
@services = options[:services]
|
15
|
+
@metadata = options[:metadata]
|
14
16
|
end
|
15
17
|
|
16
18
|
# @return [String] The partition name, e.g. "aws", "aws-cn", "aws-us-gov".
|
17
19
|
attr_reader :name
|
18
20
|
|
21
|
+
# @return [String] The regex representing the region format.
|
22
|
+
attr_reader :region_regex
|
23
|
+
|
24
|
+
# @return [Metadata] The metadata for the partition.
|
25
|
+
attr_reader :metadata
|
26
|
+
|
19
27
|
# @param [String] region_name The name of the region, e.g. "us-east-1".
|
20
28
|
# @return [Region]
|
21
29
|
# @raise [ArgumentError] Raises `ArgumentError` for unknown region name.
|
@@ -70,6 +78,7 @@ module Aws
|
|
70
78
|
Partition.new(
|
71
79
|
name: partition['partition'],
|
72
80
|
regions: build_regions(partition),
|
81
|
+
region_regex: partition['regionRegex'],
|
73
82
|
services: build_services(partition)
|
74
83
|
)
|
75
84
|
end
|
@@ -79,8 +88,7 @@ module Aws
|
|
79
88
|
# @param [Hash] partition
|
80
89
|
# @return [Hash<String,Region>]
|
81
90
|
def build_regions(partition)
|
82
|
-
partition['regions'].each_with_object({}) do
|
83
|
-
|(region_name, region), regions|
|
91
|
+
partition['regions'].each_with_object({}) do |(region_name, region), regions|
|
84
92
|
next if region_name == "#{partition['partition']}-global"
|
85
93
|
|
86
94
|
regions[region_name] = Region.build(
|
@@ -42,12 +42,62 @@ module Aws
|
|
42
42
|
end
|
43
43
|
end
|
44
44
|
|
45
|
+
# @param [Partition] partitions_metadata
|
46
|
+
# @api private
|
47
|
+
def merge_metadata(partitions_metadata)
|
48
|
+
partitions_metadata['partitions'].each do |partition_metadata|
|
49
|
+
outputs = partition_metadata['outputs']
|
50
|
+
|
51
|
+
if existing = @partitions[partition_metadata['id']]
|
52
|
+
@partitions[partition_metadata['id']] = Partition.new(
|
53
|
+
name: existing.name,
|
54
|
+
regions: build_metadata_regions(
|
55
|
+
partition_metadata['id'],
|
56
|
+
partition_metadata['regions'],
|
57
|
+
existing),
|
58
|
+
region_regex: partition_metadata['regionRegex'],
|
59
|
+
services: existing.services.each_with_object({}) do |s, services|
|
60
|
+
services[s.name] = s
|
61
|
+
end,
|
62
|
+
metadata: outputs
|
63
|
+
)
|
64
|
+
else
|
65
|
+
@partitions[partition_metadata['id']] = Partition.new(
|
66
|
+
name: partition_metadata['id'],
|
67
|
+
regions: build_metadata_regions(
|
68
|
+
partition_metadata['id'], partition_metadata['regions']
|
69
|
+
),
|
70
|
+
region_regex: partition_metadata['regionRegex'],
|
71
|
+
services: {},
|
72
|
+
metadata: outputs
|
73
|
+
)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
45
78
|
# Removed all partitions.
|
46
79
|
# @api private
|
47
80
|
def clear
|
48
81
|
@partitions = {}
|
49
82
|
end
|
50
83
|
|
84
|
+
private
|
85
|
+
|
86
|
+
def build_metadata_regions(partition_name, metadata_regions, existing = nil)
|
87
|
+
metadata_regions.each_with_object({}) do |(region_name, region), regions|
|
88
|
+
if existing && existing.region?(region_name)
|
89
|
+
regions[region_name] = existing.region(region_name)
|
90
|
+
else
|
91
|
+
regions[region_name] = Region.new(
|
92
|
+
name: region_name,
|
93
|
+
description: region['description'],
|
94
|
+
partition_name: partition_name,
|
95
|
+
services: Set.new
|
96
|
+
)
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
51
101
|
class << self
|
52
102
|
|
53
103
|
# @api private
|
data/lib/aws-partitions.rb
CHANGED
@@ -195,6 +195,12 @@ module Aws
|
|
195
195
|
end
|
196
196
|
end
|
197
197
|
|
198
|
+
# @param [Hash] partition_metadata
|
199
|
+
# @api private For Internal use only
|
200
|
+
def merge_metadata(partition_metadata)
|
201
|
+
default_partition_list.merge_metadata(partition_metadata)
|
202
|
+
end
|
203
|
+
|
198
204
|
# @api private For internal use only.
|
199
205
|
def clear
|
200
206
|
default_partition_list.clear
|
@@ -204,7 +210,11 @@ module Aws
|
|
204
210
|
# @return [PartitionList]
|
205
211
|
# @api private
|
206
212
|
def default_partition_list
|
207
|
-
@default_partition_list ||=
|
213
|
+
@default_partition_list ||= begin
|
214
|
+
partitions = PartitionList.build(defaults)
|
215
|
+
partitions.merge_metadata(default_metadata)
|
216
|
+
partitions
|
217
|
+
end
|
208
218
|
end
|
209
219
|
|
210
220
|
# @return [Hash]
|
@@ -217,6 +227,16 @@ module Aws
|
|
217
227
|
end
|
218
228
|
end
|
219
229
|
|
230
|
+
# @return [Hash]
|
231
|
+
# @api private
|
232
|
+
def default_metadata
|
233
|
+
@default_metadata ||= begin
|
234
|
+
path = File.expand_path('../../partitions-metadata.json', __FILE__)
|
235
|
+
defaults = JSON.parse(File.read(path), freeze: true)
|
236
|
+
defaults.merge('partitions' => defaults['partitions'].dup)
|
237
|
+
end
|
238
|
+
end
|
239
|
+
|
220
240
|
# @return [Hash<String,String>] Returns a map of service module names
|
221
241
|
# to their id as used in the endpoints.json document.
|
222
242
|
# @api private For internal use only.
|
@@ -227,15 +247,18 @@ module Aws
|
|
227
247
|
'ACM' => 'acm',
|
228
248
|
'ACMPCA' => 'acm-pca',
|
229
249
|
'APIGateway' => 'apigateway',
|
250
|
+
'ARCZonalShift' => 'arc-zonal-shift',
|
230
251
|
'AccessAnalyzer' => 'access-analyzer',
|
231
252
|
'Account' => 'account',
|
232
253
|
'AlexaForBusiness' => 'a4b',
|
233
254
|
'Amplify' => 'amplify',
|
234
255
|
'AmplifyBackend' => 'amplifybackend',
|
256
|
+
'AmplifyUIBuilder' => 'amplifyuibuilder',
|
235
257
|
'ApiGatewayManagementApi' => 'execute-api',
|
236
258
|
'ApiGatewayV2' => 'apigateway',
|
237
259
|
'AppConfig' => 'appconfig',
|
238
260
|
'AppConfigData' => 'appconfigdata',
|
261
|
+
'AppFabric' => 'appfabric',
|
239
262
|
'AppIntegrationsService' => 'app-integrations',
|
240
263
|
'AppMesh' => 'appmesh',
|
241
264
|
'AppRegistry' => 'servicecatalog-appregistry',
|
@@ -254,13 +277,20 @@ module Aws
|
|
254
277
|
'AutoScalingPlans' => 'autoscaling-plans',
|
255
278
|
'Backup' => 'backup',
|
256
279
|
'BackupGateway' => 'backup-gateway',
|
280
|
+
'BackupStorage' => 'backupstorage',
|
257
281
|
'Batch' => 'batch',
|
282
|
+
'Bedrock' => 'bedrock',
|
283
|
+
'BedrockRuntime' => 'bedrock-runtime',
|
284
|
+
'BillingConductor' => 'billingconductor',
|
258
285
|
'Braket' => 'braket',
|
259
286
|
'Budgets' => 'budgets',
|
260
287
|
'Chime' => 'chime',
|
261
288
|
'ChimeSDKIdentity' => 'identity-chime',
|
289
|
+
'ChimeSDKMediaPipelines' => 'media-pipelines-chime',
|
262
290
|
'ChimeSDKMeetings' => 'meetings-chime',
|
263
291
|
'ChimeSDKMessaging' => 'messaging-chime',
|
292
|
+
'ChimeSDKVoice' => 'voice-chime',
|
293
|
+
'CleanRooms' => 'cleanrooms',
|
264
294
|
'Cloud9' => 'cloud9',
|
265
295
|
'CloudControlApi' => 'cloudcontrolapi',
|
266
296
|
'CloudDirectory' => 'clouddirectory',
|
@@ -270,6 +300,7 @@ module Aws
|
|
270
300
|
'CloudHSMV2' => 'cloudhsmv2',
|
271
301
|
'CloudSearch' => 'cloudsearch',
|
272
302
|
'CloudTrail' => 'cloudtrail',
|
303
|
+
'CloudTrailData' => 'cloudtrail-data',
|
273
304
|
'CloudWatch' => 'monitoring',
|
274
305
|
'CloudWatchEvents' => 'events',
|
275
306
|
'CloudWatchEvidently' => 'evidently',
|
@@ -277,10 +308,12 @@ module Aws
|
|
277
308
|
'CloudWatchRUM' => 'rum',
|
278
309
|
'CodeArtifact' => 'codeartifact',
|
279
310
|
'CodeBuild' => 'codebuild',
|
311
|
+
'CodeCatalyst' => 'codecatalyst',
|
280
312
|
'CodeCommit' => 'codecommit',
|
281
313
|
'CodeDeploy' => 'codedeploy',
|
282
314
|
'CodeGuruProfiler' => 'codeguru-profiler',
|
283
315
|
'CodeGuruReviewer' => 'codeguru-reviewer',
|
316
|
+
'CodeGuruSecurity' => 'codeguru-security',
|
284
317
|
'CodePipeline' => 'codepipeline',
|
285
318
|
'CodeStar' => 'codestar',
|
286
319
|
'CodeStarNotifications' => 'codestar-notifications',
|
@@ -293,9 +326,12 @@ module Aws
|
|
293
326
|
'ComputeOptimizer' => 'compute-optimizer',
|
294
327
|
'ConfigService' => 'config',
|
295
328
|
'Connect' => 'connect',
|
329
|
+
'ConnectCampaignService' => 'connect-campaigns',
|
330
|
+
'ConnectCases' => 'cases',
|
296
331
|
'ConnectContactLens' => 'contact-lens',
|
297
332
|
'ConnectParticipant' => 'participant.connect',
|
298
333
|
'ConnectWisdomService' => 'wisdom',
|
334
|
+
'ControlTower' => 'controltower',
|
299
335
|
'CostExplorer' => 'ce',
|
300
336
|
'CostandUsageReportService' => 'cur',
|
301
337
|
'CustomerProfiles' => 'profile',
|
@@ -304,6 +340,7 @@ module Aws
|
|
304
340
|
'DataExchange' => 'dataexchange',
|
305
341
|
'DataPipeline' => 'datapipeline',
|
306
342
|
'DataSync' => 'datasync',
|
343
|
+
'DataZone' => 'datazone',
|
307
344
|
'DatabaseMigrationService' => 'dms',
|
308
345
|
'Detective' => 'api.detective',
|
309
346
|
'DevOpsGuru' => 'devops-guru',
|
@@ -311,6 +348,7 @@ module Aws
|
|
311
348
|
'DirectConnect' => 'directconnect',
|
312
349
|
'DirectoryService' => 'ds',
|
313
350
|
'DocDB' => 'rds',
|
351
|
+
'DocDBElastic' => 'docdb-elastic',
|
314
352
|
'Drs' => 'drs',
|
315
353
|
'DynamoDB' => 'dynamodb',
|
316
354
|
'DynamoDBStreams' => 'streams.dynamodb',
|
@@ -324,6 +362,7 @@ module Aws
|
|
324
362
|
'EKS' => 'eks',
|
325
363
|
'EMR' => 'elasticmapreduce',
|
326
364
|
'EMRContainers' => 'emr-containers',
|
365
|
+
'EMRServerless' => 'emr-serverless',
|
327
366
|
'ElastiCache' => 'elasticache',
|
328
367
|
'ElasticBeanstalk' => 'elasticbeanstalk',
|
329
368
|
'ElasticInference' => 'api.elastic-inference',
|
@@ -331,6 +370,7 @@ module Aws
|
|
331
370
|
'ElasticLoadBalancingV2' => 'elasticloadbalancing',
|
332
371
|
'ElasticTranscoder' => 'elastictranscoder',
|
333
372
|
'ElasticsearchService' => 'es',
|
373
|
+
'EntityResolution' => 'entityresolution',
|
334
374
|
'EventBridge' => 'events',
|
335
375
|
'FIS' => 'fis',
|
336
376
|
'FMS' => 'fms',
|
@@ -355,11 +395,13 @@ module Aws
|
|
355
395
|
'Honeycode' => 'honeycode',
|
356
396
|
'IAM' => 'iam',
|
357
397
|
'IVS' => 'ivs',
|
398
|
+
'IVSRealTime' => 'ivsrealtime',
|
358
399
|
'IdentityStore' => 'identitystore',
|
359
400
|
'Imagebuilder' => 'imagebuilder',
|
360
401
|
'ImportExport' => 'importexport',
|
361
402
|
'Inspector' => 'inspector',
|
362
403
|
'Inspector2' => 'inspector2',
|
404
|
+
'InternetMonitor' => 'internetmonitor',
|
363
405
|
'IoT' => 'iot',
|
364
406
|
'IoT1ClickDevicesService' => 'devices.iot1click',
|
365
407
|
'IoT1ClickProjects' => 'projects.iot1click',
|
@@ -368,16 +410,21 @@ module Aws
|
|
368
410
|
'IoTEvents' => 'iotevents',
|
369
411
|
'IoTEventsData' => 'data.iotevents',
|
370
412
|
'IoTFleetHub' => 'api.fleethub.iot',
|
413
|
+
'IoTFleetWise' => 'iotfleetwise',
|
371
414
|
'IoTJobsDataPlane' => 'data.jobs.iot',
|
415
|
+
'IoTRoboRunner' => 'iotroborunner',
|
372
416
|
'IoTSecureTunneling' => 'api.tunneling.iot',
|
373
417
|
'IoTSiteWise' => 'iotsitewise',
|
374
418
|
'IoTThingsGraph' => 'iotthingsgraph',
|
375
419
|
'IoTTwinMaker' => 'iottwinmaker',
|
376
420
|
'IoTWireless' => 'api.iotwireless',
|
421
|
+
'Ivschat' => 'ivschat',
|
377
422
|
'KMS' => 'kms',
|
378
423
|
'Kafka' => 'kafka',
|
379
424
|
'KafkaConnect' => 'kafkaconnect',
|
380
425
|
'Kendra' => 'kendra',
|
426
|
+
'KendraRanking' => 'kendra-ranking',
|
427
|
+
'Keyspaces' => 'cassandra',
|
381
428
|
'Kinesis' => 'kinesis',
|
382
429
|
'KinesisAnalytics' => 'kinesisanalytics',
|
383
430
|
'KinesisAnalyticsV2' => 'kinesisanalytics',
|
@@ -385,14 +432,18 @@ module Aws
|
|
385
432
|
'KinesisVideoArchivedMedia' => 'kinesisvideo',
|
386
433
|
'KinesisVideoMedia' => 'kinesisvideo',
|
387
434
|
'KinesisVideoSignalingChannels' => 'kinesisvideo',
|
435
|
+
'KinesisVideoWebRTCStorage' => 'kinesisvideo',
|
388
436
|
'LakeFormation' => 'lakeformation',
|
389
437
|
'Lambda' => 'lambda',
|
390
438
|
'LambdaPreview' => 'lambda',
|
439
|
+
'LaunchWizard' => 'launchwizard',
|
391
440
|
'Lex' => 'runtime.lex',
|
392
441
|
'LexModelBuildingService' => 'models.lex',
|
393
442
|
'LexModelsV2' => 'models-v2-lex',
|
394
443
|
'LexRuntimeV2' => 'runtime-v2-lex',
|
395
444
|
'LicenseManager' => 'license-manager',
|
445
|
+
'LicenseManagerLinuxSubscriptions' => 'license-manager-linux-subscriptions',
|
446
|
+
'LicenseManagerUserSubscriptions' => 'license-manager-user-subscriptions',
|
396
447
|
'Lightsail' => 'lightsail',
|
397
448
|
'LocationService' => 'geo',
|
398
449
|
'LookoutEquipment' => 'lookoutequipment',
|
@@ -404,7 +455,9 @@ module Aws
|
|
404
455
|
'MachineLearning' => 'machinelearning',
|
405
456
|
'Macie' => 'macie',
|
406
457
|
'Macie2' => 'macie2',
|
458
|
+
'MainframeModernization' => 'm2',
|
407
459
|
'ManagedBlockchain' => 'managedblockchain',
|
460
|
+
'ManagedBlockchainQuery' => 'managedblockchain-query',
|
408
461
|
'ManagedGrafana' => 'grafana',
|
409
462
|
'MarketplaceCatalog' => 'catalog.marketplace',
|
410
463
|
'MarketplaceCommerceAnalytics' => 'marketplacecommerceanalytics',
|
@@ -414,21 +467,29 @@ module Aws
|
|
414
467
|
'MediaConvert' => 'mediaconvert',
|
415
468
|
'MediaLive' => 'medialive',
|
416
469
|
'MediaPackage' => 'mediapackage',
|
470
|
+
'MediaPackageV2' => 'mediapackagev2',
|
417
471
|
'MediaPackageVod' => 'mediapackage-vod',
|
418
472
|
'MediaStore' => 'mediastore',
|
419
473
|
'MediaStoreData' => 'data.mediastore',
|
420
474
|
'MediaTailor' => 'api.mediatailor',
|
475
|
+
'MedicalImaging' => 'medical-imaging',
|
421
476
|
'MemoryDB' => 'memory-db',
|
422
477
|
'Mgn' => 'mgn',
|
423
478
|
'MigrationHub' => 'mgh',
|
424
479
|
'MigrationHubConfig' => 'migrationhub-config',
|
480
|
+
'MigrationHubOrchestrator' => 'migrationhub-orchestrator',
|
425
481
|
'MigrationHubRefactorSpaces' => 'refactor-spaces',
|
426
482
|
'MigrationHubStrategyRecommendations' => 'migrationhub-strategy',
|
427
483
|
'Mobile' => 'mobile',
|
428
484
|
'Neptune' => 'rds',
|
485
|
+
'Neptunedata' => 'neptune-db',
|
429
486
|
'NetworkFirewall' => 'network-firewall',
|
430
487
|
'NetworkManager' => 'networkmanager',
|
431
488
|
'NimbleStudio' => 'nimble',
|
489
|
+
'OAM' => 'oam',
|
490
|
+
'OSIS' => 'osis',
|
491
|
+
'Omics' => 'omics',
|
492
|
+
'OpenSearchServerless' => 'aoss',
|
432
493
|
'OpenSearchService' => 'es',
|
433
494
|
'OpsWorks' => 'opsworks',
|
434
495
|
'OpsWorksCM' => 'opsworks-cm',
|
@@ -436,14 +497,20 @@ module Aws
|
|
436
497
|
'Outposts' => 'outposts',
|
437
498
|
'PI' => 'pi',
|
438
499
|
'Panorama' => 'panorama',
|
500
|
+
'PaymentCryptography' => 'controlplane.payment-cryptography',
|
501
|
+
'PaymentCryptographyData' => 'dataplane.payment-cryptography',
|
502
|
+
'PcaConnectorAd' => 'pca-connector-ad',
|
439
503
|
'Personalize' => 'personalize',
|
440
504
|
'PersonalizeEvents' => 'personalize-events',
|
441
505
|
'PersonalizeRuntime' => 'personalize-runtime',
|
442
506
|
'Pinpoint' => 'pinpoint',
|
443
507
|
'PinpointEmail' => 'email',
|
444
508
|
'PinpointSMSVoice' => 'sms-voice.pinpoint',
|
509
|
+
'PinpointSMSVoiceV2' => 'sms-voice',
|
510
|
+
'Pipes' => 'pipes',
|
445
511
|
'Polly' => 'polly',
|
446
512
|
'Pricing' => 'api.pricing',
|
513
|
+
'PrivateNetworks' => 'private-networks',
|
447
514
|
'PrometheusService' => 'aps',
|
448
515
|
'Proton' => 'proton',
|
449
516
|
'QLDB' => 'qldb',
|
@@ -455,11 +522,14 @@ module Aws
|
|
455
522
|
'RecycleBin' => 'rbin',
|
456
523
|
'Redshift' => 'redshift',
|
457
524
|
'RedshiftDataAPIService' => 'redshift-data',
|
525
|
+
'RedshiftServerless' => 'redshift-serverless',
|
458
526
|
'Rekognition' => 'rekognition',
|
459
527
|
'ResilienceHub' => 'resiliencehub',
|
528
|
+
'ResourceExplorer2' => 'resource-explorer-2',
|
460
529
|
'ResourceGroups' => 'resource-groups',
|
461
530
|
'ResourceGroupsTaggingAPI' => 'tagging',
|
462
531
|
'RoboMaker' => 'robomaker',
|
532
|
+
'RolesAnywhere' => 'rolesanywhere',
|
463
533
|
'Route53' => 'route53',
|
464
534
|
'Route53Domains' => 'route53domains',
|
465
535
|
'Route53RecoveryCluster' => 'route53-recovery-cluster',
|
@@ -484,32 +554,42 @@ module Aws
|
|
484
554
|
'SWF' => 'swf',
|
485
555
|
'SageMaker' => 'api.sagemaker',
|
486
556
|
'SageMakerFeatureStoreRuntime' => 'featurestore-runtime.sagemaker',
|
557
|
+
'SageMakerGeospatial' => 'sagemaker-geospatial',
|
558
|
+
'SageMakerMetrics' => 'metrics.sagemaker',
|
487
559
|
'SageMakerRuntime' => 'runtime.sagemaker',
|
488
560
|
'SagemakerEdgeManager' => 'edge.sagemaker',
|
489
561
|
'SavingsPlans' => 'savingsplans',
|
562
|
+
'Scheduler' => 'scheduler',
|
490
563
|
'Schemas' => 'schemas',
|
491
564
|
'SecretsManager' => 'secretsmanager',
|
492
565
|
'SecurityHub' => 'securityhub',
|
566
|
+
'SecurityLake' => 'securitylake',
|
493
567
|
'ServerlessApplicationRepository' => 'serverlessrepo',
|
494
568
|
'ServiceCatalog' => 'servicecatalog',
|
495
569
|
'ServiceDiscovery' => 'servicediscovery',
|
496
570
|
'ServiceQuotas' => 'servicequotas',
|
497
571
|
'Shield' => 'shield',
|
498
572
|
'Signer' => 'signer',
|
573
|
+
'SimSpaceWeaver' => 'simspaceweaver',
|
499
574
|
'SimpleDB' => 'sdb',
|
500
575
|
'SnowDeviceManagement' => 'snow-device-management',
|
501
576
|
'Snowball' => 'snowball',
|
577
|
+
'SsmSap' => 'ssm-sap',
|
502
578
|
'States' => 'states',
|
503
579
|
'StorageGateway' => 'storagegateway',
|
504
580
|
'Support' => 'support',
|
581
|
+
'SupportApp' => 'supportapp',
|
505
582
|
'Synthetics' => 'synthetics',
|
506
583
|
'Textract' => 'textract',
|
507
584
|
'TimestreamQuery' => 'query.timestream',
|
508
585
|
'TimestreamWrite' => 'ingest.timestream',
|
586
|
+
'Tnb' => 'tnb',
|
509
587
|
'TranscribeService' => 'transcribe',
|
510
588
|
'TranscribeStreamingService' => 'transcribestreaming',
|
511
589
|
'Transfer' => 'transfer',
|
512
590
|
'Translate' => 'translate',
|
591
|
+
'VPCLattice' => 'vpc-lattice',
|
592
|
+
'VerifiedPermissions' => 'verifiedpermissions',
|
513
593
|
'VoiceID' => 'voiceid',
|
514
594
|
'WAF' => 'waf',
|
515
595
|
'WAFRegional' => 'waf-regional',
|
@@ -0,0 +1,213 @@
|
|
1
|
+
{
|
2
|
+
"partitions" : [ {
|
3
|
+
"id" : "aws",
|
4
|
+
"outputs" : {
|
5
|
+
"dnsSuffix" : "amazonaws.com",
|
6
|
+
"dualStackDnsSuffix" : "api.aws",
|
7
|
+
"implicitGlobalRegion" : "us-east-1",
|
8
|
+
"name" : "aws",
|
9
|
+
"supportsDualStack" : true,
|
10
|
+
"supportsFIPS" : true
|
11
|
+
},
|
12
|
+
"regionRegex" : "^(us|eu|ap|sa|ca|me|af|il)\\-\\w+\\-\\d+$",
|
13
|
+
"regions" : {
|
14
|
+
"af-south-1" : {
|
15
|
+
"description" : "Africa (Cape Town)"
|
16
|
+
},
|
17
|
+
"ap-east-1" : {
|
18
|
+
"description" : "Asia Pacific (Hong Kong)"
|
19
|
+
},
|
20
|
+
"ap-northeast-1" : {
|
21
|
+
"description" : "Asia Pacific (Tokyo)"
|
22
|
+
},
|
23
|
+
"ap-northeast-2" : {
|
24
|
+
"description" : "Asia Pacific (Seoul)"
|
25
|
+
},
|
26
|
+
"ap-northeast-3" : {
|
27
|
+
"description" : "Asia Pacific (Osaka)"
|
28
|
+
},
|
29
|
+
"ap-south-1" : {
|
30
|
+
"description" : "Asia Pacific (Mumbai)"
|
31
|
+
},
|
32
|
+
"ap-south-2" : {
|
33
|
+
"description" : "Asia Pacific (Hyderabad)"
|
34
|
+
},
|
35
|
+
"ap-southeast-1" : {
|
36
|
+
"description" : "Asia Pacific (Singapore)"
|
37
|
+
},
|
38
|
+
"ap-southeast-2" : {
|
39
|
+
"description" : "Asia Pacific (Sydney)"
|
40
|
+
},
|
41
|
+
"ap-southeast-3" : {
|
42
|
+
"description" : "Asia Pacific (Jakarta)"
|
43
|
+
},
|
44
|
+
"ap-southeast-4" : {
|
45
|
+
"description" : "Asia Pacific (Melbourne)"
|
46
|
+
},
|
47
|
+
"aws-global" : {
|
48
|
+
"description" : "AWS Standard global region"
|
49
|
+
},
|
50
|
+
"ca-central-1" : {
|
51
|
+
"description" : "Canada (Central)"
|
52
|
+
},
|
53
|
+
"eu-central-1" : {
|
54
|
+
"description" : "Europe (Frankfurt)"
|
55
|
+
},
|
56
|
+
"eu-central-2" : {
|
57
|
+
"description" : "Europe (Zurich)"
|
58
|
+
},
|
59
|
+
"eu-north-1" : {
|
60
|
+
"description" : "Europe (Stockholm)"
|
61
|
+
},
|
62
|
+
"eu-south-1" : {
|
63
|
+
"description" : "Europe (Milan)"
|
64
|
+
},
|
65
|
+
"eu-south-2" : {
|
66
|
+
"description" : "Europe (Spain)"
|
67
|
+
},
|
68
|
+
"eu-west-1" : {
|
69
|
+
"description" : "Europe (Ireland)"
|
70
|
+
},
|
71
|
+
"eu-west-2" : {
|
72
|
+
"description" : "Europe (London)"
|
73
|
+
},
|
74
|
+
"eu-west-3" : {
|
75
|
+
"description" : "Europe (Paris)"
|
76
|
+
},
|
77
|
+
"il-central-1" : {
|
78
|
+
"description" : "Israel (Tel Aviv)"
|
79
|
+
},
|
80
|
+
"me-central-1" : {
|
81
|
+
"description" : "Middle East (UAE)"
|
82
|
+
},
|
83
|
+
"me-south-1" : {
|
84
|
+
"description" : "Middle East (Bahrain)"
|
85
|
+
},
|
86
|
+
"sa-east-1" : {
|
87
|
+
"description" : "South America (Sao Paulo)"
|
88
|
+
},
|
89
|
+
"us-east-1" : {
|
90
|
+
"description" : "US East (N. Virginia)"
|
91
|
+
},
|
92
|
+
"us-east-2" : {
|
93
|
+
"description" : "US East (Ohio)"
|
94
|
+
},
|
95
|
+
"us-west-1" : {
|
96
|
+
"description" : "US West (N. California)"
|
97
|
+
},
|
98
|
+
"us-west-2" : {
|
99
|
+
"description" : "US West (Oregon)"
|
100
|
+
}
|
101
|
+
}
|
102
|
+
}, {
|
103
|
+
"id" : "aws-cn",
|
104
|
+
"outputs" : {
|
105
|
+
"dnsSuffix" : "amazonaws.com.cn",
|
106
|
+
"dualStackDnsSuffix" : "api.amazonwebservices.com.cn",
|
107
|
+
"implicitGlobalRegion" : "cn-northwest-1",
|
108
|
+
"name" : "aws-cn",
|
109
|
+
"supportsDualStack" : true,
|
110
|
+
"supportsFIPS" : true
|
111
|
+
},
|
112
|
+
"regionRegex" : "^cn\\-\\w+\\-\\d+$",
|
113
|
+
"regions" : {
|
114
|
+
"aws-cn-global" : {
|
115
|
+
"description" : "AWS China global region"
|
116
|
+
},
|
117
|
+
"cn-north-1" : {
|
118
|
+
"description" : "China (Beijing)"
|
119
|
+
},
|
120
|
+
"cn-northwest-1" : {
|
121
|
+
"description" : "China (Ningxia)"
|
122
|
+
}
|
123
|
+
}
|
124
|
+
}, {
|
125
|
+
"id" : "aws-us-gov",
|
126
|
+
"outputs" : {
|
127
|
+
"dnsSuffix" : "amazonaws.com",
|
128
|
+
"dualStackDnsSuffix" : "api.aws",
|
129
|
+
"implicitGlobalRegion" : "us-gov-west-1",
|
130
|
+
"name" : "aws-us-gov",
|
131
|
+
"supportsDualStack" : true,
|
132
|
+
"supportsFIPS" : true
|
133
|
+
},
|
134
|
+
"regionRegex" : "^us\\-gov\\-\\w+\\-\\d+$",
|
135
|
+
"regions" : {
|
136
|
+
"aws-us-gov-global" : {
|
137
|
+
"description" : "AWS GovCloud (US) global region"
|
138
|
+
},
|
139
|
+
"us-gov-east-1" : {
|
140
|
+
"description" : "AWS GovCloud (US-East)"
|
141
|
+
},
|
142
|
+
"us-gov-west-1" : {
|
143
|
+
"description" : "AWS GovCloud (US-West)"
|
144
|
+
}
|
145
|
+
}
|
146
|
+
}, {
|
147
|
+
"id" : "aws-iso",
|
148
|
+
"outputs" : {
|
149
|
+
"dnsSuffix" : "c2s.ic.gov",
|
150
|
+
"dualStackDnsSuffix" : "c2s.ic.gov",
|
151
|
+
"implicitGlobalRegion" : "us-iso-east-1",
|
152
|
+
"name" : "aws-iso",
|
153
|
+
"supportsDualStack" : false,
|
154
|
+
"supportsFIPS" : true
|
155
|
+
},
|
156
|
+
"regionRegex" : "^us\\-iso\\-\\w+\\-\\d+$",
|
157
|
+
"regions" : {
|
158
|
+
"aws-iso-global" : {
|
159
|
+
"description" : "AWS ISO (US) global region"
|
160
|
+
},
|
161
|
+
"us-iso-east-1" : {
|
162
|
+
"description" : "US ISO East"
|
163
|
+
},
|
164
|
+
"us-iso-west-1" : {
|
165
|
+
"description" : "US ISO WEST"
|
166
|
+
}
|
167
|
+
}
|
168
|
+
}, {
|
169
|
+
"id" : "aws-iso-b",
|
170
|
+
"outputs" : {
|
171
|
+
"dnsSuffix" : "sc2s.sgov.gov",
|
172
|
+
"dualStackDnsSuffix" : "sc2s.sgov.gov",
|
173
|
+
"implicitGlobalRegion" : "us-isob-east-1",
|
174
|
+
"name" : "aws-iso-b",
|
175
|
+
"supportsDualStack" : false,
|
176
|
+
"supportsFIPS" : true
|
177
|
+
},
|
178
|
+
"regionRegex" : "^us\\-isob\\-\\w+\\-\\d+$",
|
179
|
+
"regions" : {
|
180
|
+
"aws-iso-b-global" : {
|
181
|
+
"description" : "AWS ISOB (US) global region"
|
182
|
+
},
|
183
|
+
"us-isob-east-1" : {
|
184
|
+
"description" : "US ISOB East (Ohio)"
|
185
|
+
}
|
186
|
+
}
|
187
|
+
}, {
|
188
|
+
"id" : "aws-iso-e",
|
189
|
+
"outputs" : {
|
190
|
+
"dnsSuffix" : "cloud.adc-e.uk",
|
191
|
+
"dualStackDnsSuffix" : "cloud.adc-e.uk",
|
192
|
+
"implicitGlobalRegion" : "eu-isoe-west-1",
|
193
|
+
"name" : "aws-iso-e",
|
194
|
+
"supportsDualStack" : false,
|
195
|
+
"supportsFIPS" : true
|
196
|
+
},
|
197
|
+
"regionRegex" : "^eu\\-isoe\\-\\w+\\-\\d+$",
|
198
|
+
"regions" : { }
|
199
|
+
}, {
|
200
|
+
"id" : "aws-iso-f",
|
201
|
+
"outputs" : {
|
202
|
+
"dnsSuffix" : "csp.hci.ic.gov",
|
203
|
+
"dualStackDnsSuffix" : "csp.hci.ic.gov",
|
204
|
+
"implicitGlobalRegion" : "us-isof-south-1",
|
205
|
+
"name" : "aws-iso-f",
|
206
|
+
"supportsDualStack" : false,
|
207
|
+
"supportsFIPS" : true
|
208
|
+
},
|
209
|
+
"regionRegex" : "^us\\-isof\\-\\w+\\-\\d+$",
|
210
|
+
"regions" : { }
|
211
|
+
} ],
|
212
|
+
"version" : "1.1"
|
213
|
+
}
|