aws-partitions 1.877.0 → 1.1199.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 +1637 -0
- data/VERSION +1 -1
- data/lib/aws-partitions/metadata.rb +32 -0
- data/lib/aws-partitions.rb +63 -23
- data/partitions-metadata.json +80 -29
- data/partitions.json +27898 -14713
- metadata +5 -8
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.1199.0
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Aws
|
|
4
|
+
module Partitions
|
|
5
|
+
# @api private
|
|
6
|
+
module Metadata
|
|
7
|
+
class << self
|
|
8
|
+
|
|
9
|
+
# aws.partition(region: string) Option<Partition>
|
|
10
|
+
def partition(region)
|
|
11
|
+
partition =
|
|
12
|
+
partitions.find { |p| p['regions']&.fetch(region, nil) } ||
|
|
13
|
+
partitions.find { |p| region.match(p['regionRegex']) } ||
|
|
14
|
+
partitions.find { |p| p['id'] == 'aws' }
|
|
15
|
+
|
|
16
|
+
return nil unless partition
|
|
17
|
+
|
|
18
|
+
partition['outputs']
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def partitions
|
|
22
|
+
@partitions ||= default_partition_metadata
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def default_partition_metadata
|
|
26
|
+
path = File.expand_path('../../../partitions-metadata.json', __FILE__)
|
|
27
|
+
JSON.parse(File.read(path), freeze: true)['partitions']
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
data/lib/aws-partitions.rb
CHANGED
|
@@ -5,6 +5,7 @@ require_relative 'aws-partitions/partition'
|
|
|
5
5
|
require_relative 'aws-partitions/partition_list'
|
|
6
6
|
require_relative 'aws-partitions/region'
|
|
7
7
|
require_relative 'aws-partitions/service'
|
|
8
|
+
require_relative 'aws-partitions/metadata'
|
|
8
9
|
|
|
9
10
|
require 'json'
|
|
10
11
|
|
|
@@ -246,11 +247,12 @@ module Aws
|
|
|
246
247
|
{
|
|
247
248
|
'ACM' => 'acm',
|
|
248
249
|
'ACMPCA' => 'acm-pca',
|
|
250
|
+
'AIOps' => 'aiops',
|
|
249
251
|
'APIGateway' => 'apigateway',
|
|
252
|
+
'ARCRegionswitch' => 'arc-region-switch',
|
|
250
253
|
'ARCZonalShift' => 'arc-zonal-shift',
|
|
251
254
|
'AccessAnalyzer' => 'access-analyzer',
|
|
252
255
|
'Account' => 'account',
|
|
253
|
-
'AlexaForBusiness' => 'a4b',
|
|
254
256
|
'Amplify' => 'amplify',
|
|
255
257
|
'AmplifyBackend' => 'amplifybackend',
|
|
256
258
|
'AmplifyUIBuilder' => 'amplifyuibuilder',
|
|
@@ -270,24 +272,35 @@ module Aws
|
|
|
270
272
|
'ApplicationCostProfiler' => 'application-cost-profiler',
|
|
271
273
|
'ApplicationDiscoveryService' => 'discovery',
|
|
272
274
|
'ApplicationInsights' => 'applicationinsights',
|
|
275
|
+
'ApplicationSignals' => 'application-signals',
|
|
276
|
+
'Artifact' => 'artifact',
|
|
273
277
|
'Athena' => 'athena',
|
|
274
278
|
'AuditManager' => 'auditmanager',
|
|
275
279
|
'AugmentedAIRuntime' => 'a2i-runtime.sagemaker',
|
|
276
280
|
'AutoScaling' => 'autoscaling',
|
|
277
281
|
'AutoScalingPlans' => 'autoscaling-plans',
|
|
278
282
|
'B2bi' => 'b2bi',
|
|
283
|
+
'BCMDashboards' => 'bcm-dashboards',
|
|
279
284
|
'BCMDataExports' => 'bcm-data-exports',
|
|
285
|
+
'BCMPricingCalculator' => 'bcm-pricing-calculator',
|
|
286
|
+
'BCMRecommendedActions' => 'bcm-recommended-actions',
|
|
280
287
|
'Backup' => 'backup',
|
|
281
288
|
'BackupGateway' => 'backup-gateway',
|
|
282
|
-
'
|
|
289
|
+
'BackupSearch' => 'backup-search',
|
|
283
290
|
'Batch' => 'batch',
|
|
284
291
|
'Bedrock' => 'bedrock',
|
|
285
292
|
'BedrockAgent' => 'bedrock-agent',
|
|
293
|
+
'BedrockAgentCore' => 'bedrock-agentcore',
|
|
294
|
+
'BedrockAgentCoreControl' => 'bedrock-agentcore-control',
|
|
286
295
|
'BedrockAgentRuntime' => 'bedrock-agent-runtime',
|
|
296
|
+
'BedrockDataAutomation' => 'bedrock-data-automation',
|
|
297
|
+
'BedrockDataAutomationRuntime' => 'bedrock-data-automation-runtime',
|
|
287
298
|
'BedrockRuntime' => 'bedrock-runtime',
|
|
299
|
+
'Billing' => 'billing',
|
|
288
300
|
'BillingConductor' => 'billingconductor',
|
|
289
301
|
'Braket' => 'braket',
|
|
290
302
|
'Budgets' => 'budgets',
|
|
303
|
+
'Chatbot' => 'chatbot',
|
|
291
304
|
'Chime' => 'chime',
|
|
292
305
|
'ChimeSDKIdentity' => 'identity-chime',
|
|
293
306
|
'ChimeSDKMediaPipelines' => 'media-pipelines-chime',
|
|
@@ -316,12 +329,12 @@ module Aws
|
|
|
316
329
|
'CodeBuild' => 'codebuild',
|
|
317
330
|
'CodeCatalyst' => 'codecatalyst',
|
|
318
331
|
'CodeCommit' => 'codecommit',
|
|
332
|
+
'CodeConnections' => 'codeconnections',
|
|
319
333
|
'CodeDeploy' => 'codedeploy',
|
|
320
334
|
'CodeGuruProfiler' => 'codeguru-profiler',
|
|
321
335
|
'CodeGuruReviewer' => 'codeguru-reviewer',
|
|
322
336
|
'CodeGuruSecurity' => 'codeguru-security',
|
|
323
337
|
'CodePipeline' => 'codepipeline',
|
|
324
|
-
'CodeStar' => 'codestar',
|
|
325
338
|
'CodeStarNotifications' => 'codestar-notifications',
|
|
326
339
|
'CodeStarconnections' => 'codestar-connections',
|
|
327
340
|
'CognitoIdentity' => 'cognito-identity',
|
|
@@ -330,13 +343,16 @@ module Aws
|
|
|
330
343
|
'Comprehend' => 'comprehend',
|
|
331
344
|
'ComprehendMedical' => 'comprehendmedical',
|
|
332
345
|
'ComputeOptimizer' => 'compute-optimizer',
|
|
346
|
+
'ComputeOptimizerAutomation' => 'aco-automation',
|
|
333
347
|
'ConfigService' => 'config',
|
|
334
348
|
'Connect' => 'connect',
|
|
335
349
|
'ConnectCampaignService' => 'connect-campaigns',
|
|
350
|
+
'ConnectCampaignsV2' => 'connect-campaigns',
|
|
336
351
|
'ConnectCases' => 'cases',
|
|
337
352
|
'ConnectContactLens' => 'contact-lens',
|
|
338
353
|
'ConnectParticipant' => 'participant.connect',
|
|
339
354
|
'ConnectWisdomService' => 'wisdom',
|
|
355
|
+
'ControlCatalog' => 'controlcatalog',
|
|
340
356
|
'ControlTower' => 'controltower',
|
|
341
357
|
'CostExplorer' => 'ce',
|
|
342
358
|
'CostOptimizationHub' => 'cost-optimization-hub',
|
|
@@ -344,16 +360,19 @@ module Aws
|
|
|
344
360
|
'CustomerProfiles' => 'profile',
|
|
345
361
|
'DAX' => 'dax',
|
|
346
362
|
'DLM' => 'dlm',
|
|
363
|
+
'DSQL' => 'dsql',
|
|
347
364
|
'DataExchange' => 'dataexchange',
|
|
348
365
|
'DataPipeline' => 'datapipeline',
|
|
349
366
|
'DataSync' => 'datasync',
|
|
350
367
|
'DataZone' => 'datazone',
|
|
351
368
|
'DatabaseMigrationService' => 'dms',
|
|
369
|
+
'Deadline' => 'deadline',
|
|
352
370
|
'Detective' => 'api.detective',
|
|
353
371
|
'DevOpsGuru' => 'devops-guru',
|
|
354
372
|
'DeviceFarm' => 'devicefarm',
|
|
355
373
|
'DirectConnect' => 'directconnect',
|
|
356
374
|
'DirectoryService' => 'ds',
|
|
375
|
+
'DirectoryServiceData' => 'ds-data',
|
|
357
376
|
'DocDB' => 'rds',
|
|
358
377
|
'DocDBElastic' => 'docdb-elastic',
|
|
359
378
|
'Drs' => 'drs',
|
|
@@ -373,13 +392,12 @@ module Aws
|
|
|
373
392
|
'EMRServerless' => 'emr-serverless',
|
|
374
393
|
'ElastiCache' => 'elasticache',
|
|
375
394
|
'ElasticBeanstalk' => 'elasticbeanstalk',
|
|
376
|
-
'ElasticInference' => 'api.elastic-inference',
|
|
377
395
|
'ElasticLoadBalancing' => 'elasticloadbalancing',
|
|
378
396
|
'ElasticLoadBalancingV2' => 'elasticloadbalancing',
|
|
379
|
-
'ElasticTranscoder' => 'elastictranscoder',
|
|
380
397
|
'ElasticsearchService' => 'es',
|
|
381
398
|
'EntityResolution' => 'entityresolution',
|
|
382
399
|
'EventBridge' => 'events',
|
|
400
|
+
'Evs' => 'evs',
|
|
383
401
|
'FIS' => 'fis',
|
|
384
402
|
'FMS' => 'fms',
|
|
385
403
|
'FSx' => 'fsx',
|
|
@@ -391,6 +409,10 @@ module Aws
|
|
|
391
409
|
'FraudDetector' => 'frauddetector',
|
|
392
410
|
'FreeTier' => 'freetier',
|
|
393
411
|
'GameLift' => 'gamelift',
|
|
412
|
+
'GameLiftStreams' => 'gameliftstreams',
|
|
413
|
+
'GeoMaps' => 'geo-maps',
|
|
414
|
+
'GeoPlaces' => 'geo-places',
|
|
415
|
+
'GeoRoutes' => 'geo-routes',
|
|
394
416
|
'Glacier' => 'glacier',
|
|
395
417
|
'GlobalAccelerator' => 'globalaccelerator',
|
|
396
418
|
'Glue' => 'glue',
|
|
@@ -401,7 +423,6 @@ module Aws
|
|
|
401
423
|
'GuardDuty' => 'guardduty',
|
|
402
424
|
'Health' => 'health',
|
|
403
425
|
'HealthLake' => 'healthlake',
|
|
404
|
-
'Honeycode' => 'honeycode',
|
|
405
426
|
'IAM' => 'iam',
|
|
406
427
|
'IVS' => 'ivs',
|
|
407
428
|
'IVSRealTime' => 'ivsrealtime',
|
|
@@ -412,17 +433,15 @@ module Aws
|
|
|
412
433
|
'Inspector2' => 'inspector2',
|
|
413
434
|
'InspectorScan' => 'inspector-scan',
|
|
414
435
|
'InternetMonitor' => 'internetmonitor',
|
|
436
|
+
'Invoicing' => 'invoicing',
|
|
415
437
|
'IoT' => 'iot',
|
|
416
|
-
'IoT1ClickDevicesService' => 'devices.iot1click',
|
|
417
|
-
'IoT1ClickProjects' => 'projects.iot1click',
|
|
418
438
|
'IoTAnalytics' => 'iotanalytics',
|
|
419
439
|
'IoTDeviceAdvisor' => 'api.iotdeviceadvisor',
|
|
420
440
|
'IoTEvents' => 'iotevents',
|
|
421
441
|
'IoTEventsData' => 'data.iotevents',
|
|
422
|
-
'IoTFleetHub' => 'api.fleethub.iot',
|
|
423
442
|
'IoTFleetWise' => 'iotfleetwise',
|
|
424
443
|
'IoTJobsDataPlane' => 'data.jobs.iot',
|
|
425
|
-
'
|
|
444
|
+
'IoTManagedIntegrations' => 'api.iotmanagedintegrations',
|
|
426
445
|
'IoTSecureTunneling' => 'api.tunneling.iot',
|
|
427
446
|
'IoTSiteWise' => 'iotsitewise',
|
|
428
447
|
'IoTThingsGraph' => 'iotthingsgraph',
|
|
@@ -435,6 +454,7 @@ module Aws
|
|
|
435
454
|
'Kendra' => 'kendra',
|
|
436
455
|
'KendraRanking' => 'kendra-ranking',
|
|
437
456
|
'Keyspaces' => 'cassandra',
|
|
457
|
+
'KeyspacesStreams' => 'cassandra-streams',
|
|
438
458
|
'Kinesis' => 'kinesis',
|
|
439
459
|
'KinesisAnalytics' => 'kinesisanalytics',
|
|
440
460
|
'KinesisAnalyticsV2' => 'kinesisanalytics',
|
|
@@ -445,7 +465,6 @@ module Aws
|
|
|
445
465
|
'KinesisVideoWebRTCStorage' => 'kinesisvideo',
|
|
446
466
|
'LakeFormation' => 'lakeformation',
|
|
447
467
|
'Lambda' => 'lambda',
|
|
448
|
-
'LambdaPreview' => 'lambda',
|
|
449
468
|
'LaunchWizard' => 'launchwizard',
|
|
450
469
|
'Lex' => 'runtime.lex',
|
|
451
470
|
'LexModelBuildingService' => 'models.lex',
|
|
@@ -457,13 +476,14 @@ module Aws
|
|
|
457
476
|
'Lightsail' => 'lightsail',
|
|
458
477
|
'LocationService' => 'geo',
|
|
459
478
|
'LookoutEquipment' => 'lookoutequipment',
|
|
460
|
-
'
|
|
461
|
-
'LookoutforVision' => 'lookoutvision',
|
|
479
|
+
'MPA' => 'mpa',
|
|
462
480
|
'MQ' => 'mq',
|
|
463
481
|
'MTurk' => 'mturk-requester',
|
|
464
482
|
'MWAA' => 'airflow',
|
|
483
|
+
'MWAAServerless' => 'airflow-serverless',
|
|
465
484
|
'MachineLearning' => 'machinelearning',
|
|
466
485
|
'Macie2' => 'macie2',
|
|
486
|
+
'MailManager' => 'mail-manager',
|
|
467
487
|
'MainframeModernization' => 'm2',
|
|
468
488
|
'ManagedBlockchain' => 'managedblockchain',
|
|
469
489
|
'ManagedBlockchainQuery' => 'managedblockchain-query',
|
|
@@ -474,6 +494,7 @@ module Aws
|
|
|
474
494
|
'MarketplaceDeployment' => 'deployment-marketplace',
|
|
475
495
|
'MarketplaceEntitlementService' => 'entitlement.marketplace',
|
|
476
496
|
'MarketplaceMetering' => 'metering.marketplace',
|
|
497
|
+
'MarketplaceReporting' => 'reporting-marketplace',
|
|
477
498
|
'MediaConnect' => 'mediaconnect',
|
|
478
499
|
'MediaConvert' => 'mediaconvert',
|
|
479
500
|
'MediaLive' => 'medialive',
|
|
@@ -491,28 +512,36 @@ module Aws
|
|
|
491
512
|
'MigrationHubOrchestrator' => 'migrationhub-orchestrator',
|
|
492
513
|
'MigrationHubRefactorSpaces' => 'refactor-spaces',
|
|
493
514
|
'MigrationHubStrategyRecommendations' => 'migrationhub-strategy',
|
|
494
|
-
'Mobile' => 'mobile',
|
|
495
515
|
'Neptune' => 'rds',
|
|
496
516
|
'NeptuneGraph' => 'neptune-graph',
|
|
497
517
|
'Neptunedata' => 'neptune-db',
|
|
498
518
|
'NetworkFirewall' => 'network-firewall',
|
|
519
|
+
'NetworkFlowMonitor' => 'networkflowmonitor',
|
|
499
520
|
'NetworkManager' => 'networkmanager',
|
|
500
521
|
'NetworkMonitor' => 'networkmonitor',
|
|
501
|
-
'
|
|
522
|
+
'Notifications' => 'notifications',
|
|
523
|
+
'NotificationsContacts' => 'notifications-contacts',
|
|
524
|
+
'NovaAct' => 'nova-act',
|
|
502
525
|
'OAM' => 'oam',
|
|
503
526
|
'OSIS' => 'osis',
|
|
527
|
+
'ObservabilityAdmin' => 'observabilityadmin',
|
|
528
|
+
'Odb' => 'odb',
|
|
504
529
|
'Omics' => 'omics',
|
|
505
530
|
'OpenSearchServerless' => 'aoss',
|
|
506
531
|
'OpenSearchService' => 'es',
|
|
507
|
-
'OpsWorks' => 'opsworks',
|
|
508
|
-
'OpsWorksCM' => 'opsworks-cm',
|
|
509
532
|
'Organizations' => 'organizations',
|
|
510
533
|
'Outposts' => 'outposts',
|
|
534
|
+
'PCS' => 'pcs',
|
|
511
535
|
'PI' => 'pi',
|
|
512
536
|
'Panorama' => 'panorama',
|
|
537
|
+
'PartnerCentralAccount' => 'partnercentral-account',
|
|
538
|
+
'PartnerCentralBenefits' => 'partnercentral-benefits',
|
|
539
|
+
'PartnerCentralChannel' => 'partnercentral-channel',
|
|
540
|
+
'PartnerCentralSelling' => 'partnercentral-selling',
|
|
513
541
|
'PaymentCryptography' => 'controlplane.payment-cryptography',
|
|
514
542
|
'PaymentCryptographyData' => 'dataplane.payment-cryptography',
|
|
515
543
|
'PcaConnectorAd' => 'pca-connector-ad',
|
|
544
|
+
'PcaConnectorScep' => 'pca-connector-scep',
|
|
516
545
|
'Personalize' => 'personalize',
|
|
517
546
|
'PersonalizeEvents' => 'personalize-events',
|
|
518
547
|
'PersonalizeRuntime' => 'personalize-runtime',
|
|
@@ -523,17 +552,16 @@ module Aws
|
|
|
523
552
|
'Pipes' => 'pipes',
|
|
524
553
|
'Polly' => 'polly',
|
|
525
554
|
'Pricing' => 'api.pricing',
|
|
526
|
-
'PrivateNetworks' => 'private-networks',
|
|
527
555
|
'PrometheusService' => 'aps',
|
|
528
556
|
'Proton' => 'proton',
|
|
557
|
+
'QApps' => 'data.qapps',
|
|
529
558
|
'QBusiness' => 'qbusiness',
|
|
530
559
|
'QConnect' => 'wisdom',
|
|
531
|
-
'QLDB' => 'qldb',
|
|
532
|
-
'QLDBSession' => 'session.qldb',
|
|
533
560
|
'QuickSight' => 'quicksight',
|
|
534
561
|
'RAM' => 'ram',
|
|
535
562
|
'RDS' => 'rds',
|
|
536
563
|
'RDSDataService' => 'rds-data',
|
|
564
|
+
'RTBFabric' => 'rtbfabric',
|
|
537
565
|
'RecycleBin' => 'rbin',
|
|
538
566
|
'Redshift' => 'redshift',
|
|
539
567
|
'RedshiftDataAPIService' => 'redshift-data',
|
|
@@ -544,10 +572,11 @@ module Aws
|
|
|
544
572
|
'ResourceExplorer2' => 'resource-explorer-2',
|
|
545
573
|
'ResourceGroups' => 'resource-groups',
|
|
546
574
|
'ResourceGroupsTaggingAPI' => 'tagging',
|
|
547
|
-
'RoboMaker' => 'robomaker',
|
|
548
575
|
'RolesAnywhere' => 'rolesanywhere',
|
|
549
576
|
'Route53' => 'route53',
|
|
550
577
|
'Route53Domains' => 'route53domains',
|
|
578
|
+
'Route53GlobalResolver' => 'route53globalresolver',
|
|
579
|
+
'Route53Profiles' => 'route53profiles',
|
|
551
580
|
'Route53RecoveryCluster' => 'route53-recovery-cluster',
|
|
552
581
|
'Route53RecoveryControlConfig' => 'route53-recovery-control-config',
|
|
553
582
|
'Route53RecoveryReadiness' => 'route53-recovery-readiness',
|
|
@@ -555,14 +584,17 @@ module Aws
|
|
|
555
584
|
'S3' => 's3',
|
|
556
585
|
'S3Control' => 's3-control',
|
|
557
586
|
'S3Outposts' => 's3-outposts',
|
|
587
|
+
'S3Tables' => 's3tables',
|
|
588
|
+
'S3Vectors' => 's3vectors',
|
|
558
589
|
'SES' => 'email',
|
|
559
590
|
'SESV2' => 'email',
|
|
560
|
-
'SMS' => 'sms',
|
|
561
591
|
'SNS' => 'sns',
|
|
562
592
|
'SQS' => 'sqs',
|
|
563
593
|
'SSM' => 'ssm',
|
|
564
594
|
'SSMContacts' => 'ssm-contacts',
|
|
595
|
+
'SSMGuiConnect' => 'ssm-guiconnect',
|
|
565
596
|
'SSMIncidents' => 'ssm-incidents',
|
|
597
|
+
'SSMQuickSetup' => 'ssm-quicksetup',
|
|
566
598
|
'SSO' => 'portal.sso',
|
|
567
599
|
'SSOAdmin' => 'sso',
|
|
568
600
|
'SSOOIDC' => 'oidc',
|
|
@@ -573,12 +605,14 @@ module Aws
|
|
|
573
605
|
'SageMakerGeospatial' => 'sagemaker-geospatial',
|
|
574
606
|
'SageMakerMetrics' => 'metrics.sagemaker',
|
|
575
607
|
'SageMakerRuntime' => 'runtime.sagemaker',
|
|
608
|
+
'SageMakerRuntimeHTTP2' => 'runtime.sagemaker',
|
|
576
609
|
'SagemakerEdgeManager' => 'edge.sagemaker',
|
|
577
610
|
'SavingsPlans' => 'savingsplans',
|
|
578
611
|
'Scheduler' => 'scheduler',
|
|
579
612
|
'Schemas' => 'schemas',
|
|
580
613
|
'SecretsManager' => 'secretsmanager',
|
|
581
614
|
'SecurityHub' => 'securityhub',
|
|
615
|
+
'SecurityIR' => 'security-ir',
|
|
582
616
|
'SecurityLake' => 'securitylake',
|
|
583
617
|
'ServerlessApplicationRepository' => 'serverlessrepo',
|
|
584
618
|
'ServiceCatalog' => 'servicecatalog',
|
|
@@ -586,17 +620,22 @@ module Aws
|
|
|
586
620
|
'ServiceQuotas' => 'servicequotas',
|
|
587
621
|
'Shield' => 'shield',
|
|
588
622
|
'Signer' => 'signer',
|
|
623
|
+
'Signin' => 'signin',
|
|
589
624
|
'SimSpaceWeaver' => 'simspaceweaver',
|
|
590
625
|
'SimpleDB' => 'sdb',
|
|
591
626
|
'SnowDeviceManagement' => 'snow-device-management',
|
|
592
627
|
'Snowball' => 'snowball',
|
|
628
|
+
'SocialMessaging' => 'social-messaging',
|
|
593
629
|
'SsmSap' => 'ssm-sap',
|
|
594
630
|
'States' => 'states',
|
|
595
631
|
'StorageGateway' => 'storagegateway',
|
|
632
|
+
'SupplyChain' => 'scn',
|
|
596
633
|
'Support' => 'support',
|
|
597
634
|
'SupportApp' => 'supportapp',
|
|
598
635
|
'Synthetics' => 'synthetics',
|
|
636
|
+
'TaxSettings' => 'tax',
|
|
599
637
|
'Textract' => 'textract',
|
|
638
|
+
'TimestreamInfluxDB' => 'timestream-influxdb',
|
|
600
639
|
'TimestreamQuery' => 'query.timestream',
|
|
601
640
|
'TimestreamWrite' => 'ingest.timestream',
|
|
602
641
|
'Tnb' => 'tnb',
|
|
@@ -612,13 +651,14 @@ module Aws
|
|
|
612
651
|
'WAFRegional' => 'waf-regional',
|
|
613
652
|
'WAFV2' => 'wafv2',
|
|
614
653
|
'WellArchitected' => 'wellarchitected',
|
|
654
|
+
'Wickr' => 'admin.wickr',
|
|
615
655
|
'WorkDocs' => 'workdocs',
|
|
616
|
-
'WorkLink' => 'worklink',
|
|
617
656
|
'WorkMail' => 'workmail',
|
|
618
657
|
'WorkMailMessageFlow' => 'workmailmessageflow',
|
|
619
658
|
'WorkSpaces' => 'workspaces',
|
|
620
659
|
'WorkSpacesThinClient' => 'thinclient',
|
|
621
660
|
'WorkSpacesWeb' => 'workspaces-web',
|
|
661
|
+
'WorkspacesInstances' => 'workspaces-instances',
|
|
622
662
|
'XRay' => 'xray',
|
|
623
663
|
}
|
|
624
664
|
# end service ids
|
data/partitions-metadata.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"supportsDualStack" : true,
|
|
10
10
|
"supportsFIPS" : true
|
|
11
11
|
},
|
|
12
|
-
"regionRegex" : "^(us|eu|ap|sa|ca|me|af|il)\\-\\w+\\-\\d+$",
|
|
12
|
+
"regionRegex" : "^(us|eu|ap|sa|ca|me|af|il|mx)\\-\\w+\\-\\d+$",
|
|
13
13
|
"regions" : {
|
|
14
14
|
"af-south-1" : {
|
|
15
15
|
"description" : "Africa (Cape Town)"
|
|
@@ -17,6 +17,9 @@
|
|
|
17
17
|
"ap-east-1" : {
|
|
18
18
|
"description" : "Asia Pacific (Hong Kong)"
|
|
19
19
|
},
|
|
20
|
+
"ap-east-2" : {
|
|
21
|
+
"description" : "Asia Pacific (Taipei)"
|
|
22
|
+
},
|
|
20
23
|
"ap-northeast-1" : {
|
|
21
24
|
"description" : "Asia Pacific (Tokyo)"
|
|
22
25
|
},
|
|
@@ -44,8 +47,17 @@
|
|
|
44
47
|
"ap-southeast-4" : {
|
|
45
48
|
"description" : "Asia Pacific (Melbourne)"
|
|
46
49
|
},
|
|
50
|
+
"ap-southeast-5" : {
|
|
51
|
+
"description" : "Asia Pacific (Malaysia)"
|
|
52
|
+
},
|
|
53
|
+
"ap-southeast-6" : {
|
|
54
|
+
"description" : "Asia Pacific (New Zealand)"
|
|
55
|
+
},
|
|
56
|
+
"ap-southeast-7" : {
|
|
57
|
+
"description" : "Asia Pacific (Thailand)"
|
|
58
|
+
},
|
|
47
59
|
"aws-global" : {
|
|
48
|
-
"description" : "
|
|
60
|
+
"description" : "aws global region"
|
|
49
61
|
},
|
|
50
62
|
"ca-central-1" : {
|
|
51
63
|
"description" : "Canada (Central)"
|
|
@@ -86,6 +98,9 @@
|
|
|
86
98
|
"me-south-1" : {
|
|
87
99
|
"description" : "Middle East (Bahrain)"
|
|
88
100
|
},
|
|
101
|
+
"mx-central-1" : {
|
|
102
|
+
"description" : "Mexico (Central)"
|
|
103
|
+
},
|
|
89
104
|
"sa-east-1" : {
|
|
90
105
|
"description" : "South America (Sao Paulo)"
|
|
91
106
|
},
|
|
@@ -115,7 +130,7 @@
|
|
|
115
130
|
"regionRegex" : "^cn\\-\\w+\\-\\d+$",
|
|
116
131
|
"regions" : {
|
|
117
132
|
"aws-cn-global" : {
|
|
118
|
-
"description" : "
|
|
133
|
+
"description" : "aws-cn global region"
|
|
119
134
|
},
|
|
120
135
|
"cn-north-1" : {
|
|
121
136
|
"description" : "China (Beijing)"
|
|
@@ -125,41 +140,35 @@
|
|
|
125
140
|
}
|
|
126
141
|
}
|
|
127
142
|
}, {
|
|
128
|
-
"id" : "aws-
|
|
143
|
+
"id" : "aws-eusc",
|
|
129
144
|
"outputs" : {
|
|
130
|
-
"dnsSuffix" : "amazonaws.
|
|
131
|
-
"dualStackDnsSuffix" : "api.
|
|
132
|
-
"implicitGlobalRegion" : "
|
|
133
|
-
"name" : "aws-
|
|
145
|
+
"dnsSuffix" : "amazonaws.eu",
|
|
146
|
+
"dualStackDnsSuffix" : "api.amazonwebservices.eu",
|
|
147
|
+
"implicitGlobalRegion" : "eusc-de-east-1",
|
|
148
|
+
"name" : "aws-eusc",
|
|
134
149
|
"supportsDualStack" : true,
|
|
135
150
|
"supportsFIPS" : true
|
|
136
151
|
},
|
|
137
|
-
"regionRegex" : "^
|
|
152
|
+
"regionRegex" : "^eusc\\-(de)\\-\\w+\\-\\d+$",
|
|
138
153
|
"regions" : {
|
|
139
|
-
"
|
|
140
|
-
"description" : "
|
|
141
|
-
},
|
|
142
|
-
"us-gov-east-1" : {
|
|
143
|
-
"description" : "AWS GovCloud (US-East)"
|
|
144
|
-
},
|
|
145
|
-
"us-gov-west-1" : {
|
|
146
|
-
"description" : "AWS GovCloud (US-West)"
|
|
154
|
+
"eusc-de-east-1" : {
|
|
155
|
+
"description" : "EU (Germany)"
|
|
147
156
|
}
|
|
148
157
|
}
|
|
149
158
|
}, {
|
|
150
159
|
"id" : "aws-iso",
|
|
151
160
|
"outputs" : {
|
|
152
161
|
"dnsSuffix" : "c2s.ic.gov",
|
|
153
|
-
"dualStackDnsSuffix" : "
|
|
162
|
+
"dualStackDnsSuffix" : "api.aws.ic.gov",
|
|
154
163
|
"implicitGlobalRegion" : "us-iso-east-1",
|
|
155
164
|
"name" : "aws-iso",
|
|
156
|
-
"supportsDualStack" :
|
|
165
|
+
"supportsDualStack" : true,
|
|
157
166
|
"supportsFIPS" : true
|
|
158
167
|
},
|
|
159
168
|
"regionRegex" : "^us\\-iso\\-\\w+\\-\\d+$",
|
|
160
169
|
"regions" : {
|
|
161
170
|
"aws-iso-global" : {
|
|
162
|
-
"description" : "
|
|
171
|
+
"description" : "aws-iso global region"
|
|
163
172
|
},
|
|
164
173
|
"us-iso-east-1" : {
|
|
165
174
|
"description" : "US ISO East"
|
|
@@ -172,45 +181,87 @@
|
|
|
172
181
|
"id" : "aws-iso-b",
|
|
173
182
|
"outputs" : {
|
|
174
183
|
"dnsSuffix" : "sc2s.sgov.gov",
|
|
175
|
-
"dualStackDnsSuffix" : "
|
|
184
|
+
"dualStackDnsSuffix" : "api.aws.scloud",
|
|
176
185
|
"implicitGlobalRegion" : "us-isob-east-1",
|
|
177
186
|
"name" : "aws-iso-b",
|
|
178
|
-
"supportsDualStack" :
|
|
187
|
+
"supportsDualStack" : true,
|
|
179
188
|
"supportsFIPS" : true
|
|
180
189
|
},
|
|
181
190
|
"regionRegex" : "^us\\-isob\\-\\w+\\-\\d+$",
|
|
182
191
|
"regions" : {
|
|
183
192
|
"aws-iso-b-global" : {
|
|
184
|
-
"description" : "
|
|
193
|
+
"description" : "aws-iso-b global region"
|
|
185
194
|
},
|
|
186
195
|
"us-isob-east-1" : {
|
|
187
196
|
"description" : "US ISOB East (Ohio)"
|
|
197
|
+
},
|
|
198
|
+
"us-isob-west-1" : {
|
|
199
|
+
"description" : "US ISOB West"
|
|
188
200
|
}
|
|
189
201
|
}
|
|
190
202
|
}, {
|
|
191
203
|
"id" : "aws-iso-e",
|
|
192
204
|
"outputs" : {
|
|
193
205
|
"dnsSuffix" : "cloud.adc-e.uk",
|
|
194
|
-
"dualStackDnsSuffix" : "cloud.adc-e.uk",
|
|
206
|
+
"dualStackDnsSuffix" : "api.cloud-aws.adc-e.uk",
|
|
195
207
|
"implicitGlobalRegion" : "eu-isoe-west-1",
|
|
196
208
|
"name" : "aws-iso-e",
|
|
197
|
-
"supportsDualStack" :
|
|
209
|
+
"supportsDualStack" : true,
|
|
198
210
|
"supportsFIPS" : true
|
|
199
211
|
},
|
|
200
212
|
"regionRegex" : "^eu\\-isoe\\-\\w+\\-\\d+$",
|
|
201
|
-
"regions" : {
|
|
213
|
+
"regions" : {
|
|
214
|
+
"aws-iso-e-global" : {
|
|
215
|
+
"description" : "aws-iso-e global region"
|
|
216
|
+
},
|
|
217
|
+
"eu-isoe-west-1" : {
|
|
218
|
+
"description" : "EU ISOE West"
|
|
219
|
+
}
|
|
220
|
+
}
|
|
202
221
|
}, {
|
|
203
222
|
"id" : "aws-iso-f",
|
|
204
223
|
"outputs" : {
|
|
205
224
|
"dnsSuffix" : "csp.hci.ic.gov",
|
|
206
|
-
"dualStackDnsSuffix" : "
|
|
225
|
+
"dualStackDnsSuffix" : "api.aws.hci.ic.gov",
|
|
207
226
|
"implicitGlobalRegion" : "us-isof-south-1",
|
|
208
227
|
"name" : "aws-iso-f",
|
|
209
|
-
"supportsDualStack" :
|
|
228
|
+
"supportsDualStack" : true,
|
|
210
229
|
"supportsFIPS" : true
|
|
211
230
|
},
|
|
212
231
|
"regionRegex" : "^us\\-isof\\-\\w+\\-\\d+$",
|
|
213
|
-
"regions" : {
|
|
232
|
+
"regions" : {
|
|
233
|
+
"aws-iso-f-global" : {
|
|
234
|
+
"description" : "aws-iso-f global region"
|
|
235
|
+
},
|
|
236
|
+
"us-isof-east-1" : {
|
|
237
|
+
"description" : "US ISOF EAST"
|
|
238
|
+
},
|
|
239
|
+
"us-isof-south-1" : {
|
|
240
|
+
"description" : "US ISOF SOUTH"
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
}, {
|
|
244
|
+
"id" : "aws-us-gov",
|
|
245
|
+
"outputs" : {
|
|
246
|
+
"dnsSuffix" : "amazonaws.com",
|
|
247
|
+
"dualStackDnsSuffix" : "api.aws",
|
|
248
|
+
"implicitGlobalRegion" : "us-gov-west-1",
|
|
249
|
+
"name" : "aws-us-gov",
|
|
250
|
+
"supportsDualStack" : true,
|
|
251
|
+
"supportsFIPS" : true
|
|
252
|
+
},
|
|
253
|
+
"regionRegex" : "^us\\-gov\\-\\w+\\-\\d+$",
|
|
254
|
+
"regions" : {
|
|
255
|
+
"aws-us-gov-global" : {
|
|
256
|
+
"description" : "aws-us-gov global region"
|
|
257
|
+
},
|
|
258
|
+
"us-gov-east-1" : {
|
|
259
|
+
"description" : "AWS GovCloud (US-East)"
|
|
260
|
+
},
|
|
261
|
+
"us-gov-west-1" : {
|
|
262
|
+
"description" : "AWS GovCloud (US-West)"
|
|
263
|
+
}
|
|
264
|
+
}
|
|
214
265
|
} ],
|
|
215
266
|
"version" : "1.1"
|
|
216
267
|
}
|