aws-partitions 1.878.0 → 1.1198.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 +1627 -0
- data/VERSION +1 -1
- data/lib/aws-partitions/metadata.rb +32 -0
- data/lib/aws-partitions.rb +63 -22
- data/partitions-metadata.json +80 -29
- data/partitions.json +27896 -14749
- metadata +5 -8
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.1198.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,13 @@ 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
397
|
'ElasticTranscoder' => 'elastictranscoder',
|
|
380
398
|
'ElasticsearchService' => 'es',
|
|
381
399
|
'EntityResolution' => 'entityresolution',
|
|
382
400
|
'EventBridge' => 'events',
|
|
401
|
+
'Evs' => 'evs',
|
|
383
402
|
'FIS' => 'fis',
|
|
384
403
|
'FMS' => 'fms',
|
|
385
404
|
'FSx' => 'fsx',
|
|
@@ -391,6 +410,10 @@ module Aws
|
|
|
391
410
|
'FraudDetector' => 'frauddetector',
|
|
392
411
|
'FreeTier' => 'freetier',
|
|
393
412
|
'GameLift' => 'gamelift',
|
|
413
|
+
'GameLiftStreams' => 'gameliftstreams',
|
|
414
|
+
'GeoMaps' => 'geo-maps',
|
|
415
|
+
'GeoPlaces' => 'geo-places',
|
|
416
|
+
'GeoRoutes' => 'geo-routes',
|
|
394
417
|
'Glacier' => 'glacier',
|
|
395
418
|
'GlobalAccelerator' => 'globalaccelerator',
|
|
396
419
|
'Glue' => 'glue',
|
|
@@ -401,7 +424,6 @@ module Aws
|
|
|
401
424
|
'GuardDuty' => 'guardduty',
|
|
402
425
|
'Health' => 'health',
|
|
403
426
|
'HealthLake' => 'healthlake',
|
|
404
|
-
'Honeycode' => 'honeycode',
|
|
405
427
|
'IAM' => 'iam',
|
|
406
428
|
'IVS' => 'ivs',
|
|
407
429
|
'IVSRealTime' => 'ivsrealtime',
|
|
@@ -412,17 +434,15 @@ module Aws
|
|
|
412
434
|
'Inspector2' => 'inspector2',
|
|
413
435
|
'InspectorScan' => 'inspector-scan',
|
|
414
436
|
'InternetMonitor' => 'internetmonitor',
|
|
437
|
+
'Invoicing' => 'invoicing',
|
|
415
438
|
'IoT' => 'iot',
|
|
416
|
-
'IoT1ClickDevicesService' => 'devices.iot1click',
|
|
417
|
-
'IoT1ClickProjects' => 'projects.iot1click',
|
|
418
439
|
'IoTAnalytics' => 'iotanalytics',
|
|
419
440
|
'IoTDeviceAdvisor' => 'api.iotdeviceadvisor',
|
|
420
441
|
'IoTEvents' => 'iotevents',
|
|
421
442
|
'IoTEventsData' => 'data.iotevents',
|
|
422
|
-
'IoTFleetHub' => 'api.fleethub.iot',
|
|
423
443
|
'IoTFleetWise' => 'iotfleetwise',
|
|
424
444
|
'IoTJobsDataPlane' => 'data.jobs.iot',
|
|
425
|
-
'
|
|
445
|
+
'IoTManagedIntegrations' => 'api.iotmanagedintegrations',
|
|
426
446
|
'IoTSecureTunneling' => 'api.tunneling.iot',
|
|
427
447
|
'IoTSiteWise' => 'iotsitewise',
|
|
428
448
|
'IoTThingsGraph' => 'iotthingsgraph',
|
|
@@ -435,6 +455,7 @@ module Aws
|
|
|
435
455
|
'Kendra' => 'kendra',
|
|
436
456
|
'KendraRanking' => 'kendra-ranking',
|
|
437
457
|
'Keyspaces' => 'cassandra',
|
|
458
|
+
'KeyspacesStreams' => 'cassandra-streams',
|
|
438
459
|
'Kinesis' => 'kinesis',
|
|
439
460
|
'KinesisAnalytics' => 'kinesisanalytics',
|
|
440
461
|
'KinesisAnalyticsV2' => 'kinesisanalytics',
|
|
@@ -445,7 +466,6 @@ module Aws
|
|
|
445
466
|
'KinesisVideoWebRTCStorage' => 'kinesisvideo',
|
|
446
467
|
'LakeFormation' => 'lakeformation',
|
|
447
468
|
'Lambda' => 'lambda',
|
|
448
|
-
'LambdaPreview' => 'lambda',
|
|
449
469
|
'LaunchWizard' => 'launchwizard',
|
|
450
470
|
'Lex' => 'runtime.lex',
|
|
451
471
|
'LexModelBuildingService' => 'models.lex',
|
|
@@ -457,13 +477,14 @@ module Aws
|
|
|
457
477
|
'Lightsail' => 'lightsail',
|
|
458
478
|
'LocationService' => 'geo',
|
|
459
479
|
'LookoutEquipment' => 'lookoutequipment',
|
|
460
|
-
'
|
|
461
|
-
'LookoutforVision' => 'lookoutvision',
|
|
480
|
+
'MPA' => 'mpa',
|
|
462
481
|
'MQ' => 'mq',
|
|
463
482
|
'MTurk' => 'mturk-requester',
|
|
464
483
|
'MWAA' => 'airflow',
|
|
484
|
+
'MWAAServerless' => 'airflow-serverless',
|
|
465
485
|
'MachineLearning' => 'machinelearning',
|
|
466
486
|
'Macie2' => 'macie2',
|
|
487
|
+
'MailManager' => 'mail-manager',
|
|
467
488
|
'MainframeModernization' => 'm2',
|
|
468
489
|
'ManagedBlockchain' => 'managedblockchain',
|
|
469
490
|
'ManagedBlockchainQuery' => 'managedblockchain-query',
|
|
@@ -474,6 +495,7 @@ module Aws
|
|
|
474
495
|
'MarketplaceDeployment' => 'deployment-marketplace',
|
|
475
496
|
'MarketplaceEntitlementService' => 'entitlement.marketplace',
|
|
476
497
|
'MarketplaceMetering' => 'metering.marketplace',
|
|
498
|
+
'MarketplaceReporting' => 'reporting-marketplace',
|
|
477
499
|
'MediaConnect' => 'mediaconnect',
|
|
478
500
|
'MediaConvert' => 'mediaconvert',
|
|
479
501
|
'MediaLive' => 'medialive',
|
|
@@ -491,28 +513,36 @@ module Aws
|
|
|
491
513
|
'MigrationHubOrchestrator' => 'migrationhub-orchestrator',
|
|
492
514
|
'MigrationHubRefactorSpaces' => 'refactor-spaces',
|
|
493
515
|
'MigrationHubStrategyRecommendations' => 'migrationhub-strategy',
|
|
494
|
-
'Mobile' => 'mobile',
|
|
495
516
|
'Neptune' => 'rds',
|
|
496
517
|
'NeptuneGraph' => 'neptune-graph',
|
|
497
518
|
'Neptunedata' => 'neptune-db',
|
|
498
519
|
'NetworkFirewall' => 'network-firewall',
|
|
520
|
+
'NetworkFlowMonitor' => 'networkflowmonitor',
|
|
499
521
|
'NetworkManager' => 'networkmanager',
|
|
500
522
|
'NetworkMonitor' => 'networkmonitor',
|
|
501
|
-
'
|
|
523
|
+
'Notifications' => 'notifications',
|
|
524
|
+
'NotificationsContacts' => 'notifications-contacts',
|
|
525
|
+
'NovaAct' => 'nova-act',
|
|
502
526
|
'OAM' => 'oam',
|
|
503
527
|
'OSIS' => 'osis',
|
|
528
|
+
'ObservabilityAdmin' => 'observabilityadmin',
|
|
529
|
+
'Odb' => 'odb',
|
|
504
530
|
'Omics' => 'omics',
|
|
505
531
|
'OpenSearchServerless' => 'aoss',
|
|
506
532
|
'OpenSearchService' => 'es',
|
|
507
|
-
'OpsWorks' => 'opsworks',
|
|
508
|
-
'OpsWorksCM' => 'opsworks-cm',
|
|
509
533
|
'Organizations' => 'organizations',
|
|
510
534
|
'Outposts' => 'outposts',
|
|
535
|
+
'PCS' => 'pcs',
|
|
511
536
|
'PI' => 'pi',
|
|
512
537
|
'Panorama' => 'panorama',
|
|
538
|
+
'PartnerCentralAccount' => 'partnercentral-account',
|
|
539
|
+
'PartnerCentralBenefits' => 'partnercentral-benefits',
|
|
540
|
+
'PartnerCentralChannel' => 'partnercentral-channel',
|
|
541
|
+
'PartnerCentralSelling' => 'partnercentral-selling',
|
|
513
542
|
'PaymentCryptography' => 'controlplane.payment-cryptography',
|
|
514
543
|
'PaymentCryptographyData' => 'dataplane.payment-cryptography',
|
|
515
544
|
'PcaConnectorAd' => 'pca-connector-ad',
|
|
545
|
+
'PcaConnectorScep' => 'pca-connector-scep',
|
|
516
546
|
'Personalize' => 'personalize',
|
|
517
547
|
'PersonalizeEvents' => 'personalize-events',
|
|
518
548
|
'PersonalizeRuntime' => 'personalize-runtime',
|
|
@@ -523,17 +553,16 @@ module Aws
|
|
|
523
553
|
'Pipes' => 'pipes',
|
|
524
554
|
'Polly' => 'polly',
|
|
525
555
|
'Pricing' => 'api.pricing',
|
|
526
|
-
'PrivateNetworks' => 'private-networks',
|
|
527
556
|
'PrometheusService' => 'aps',
|
|
528
557
|
'Proton' => 'proton',
|
|
558
|
+
'QApps' => 'data.qapps',
|
|
529
559
|
'QBusiness' => 'qbusiness',
|
|
530
560
|
'QConnect' => 'wisdom',
|
|
531
|
-
'QLDB' => 'qldb',
|
|
532
|
-
'QLDBSession' => 'session.qldb',
|
|
533
561
|
'QuickSight' => 'quicksight',
|
|
534
562
|
'RAM' => 'ram',
|
|
535
563
|
'RDS' => 'rds',
|
|
536
564
|
'RDSDataService' => 'rds-data',
|
|
565
|
+
'RTBFabric' => 'rtbfabric',
|
|
537
566
|
'RecycleBin' => 'rbin',
|
|
538
567
|
'Redshift' => 'redshift',
|
|
539
568
|
'RedshiftDataAPIService' => 'redshift-data',
|
|
@@ -544,10 +573,11 @@ module Aws
|
|
|
544
573
|
'ResourceExplorer2' => 'resource-explorer-2',
|
|
545
574
|
'ResourceGroups' => 'resource-groups',
|
|
546
575
|
'ResourceGroupsTaggingAPI' => 'tagging',
|
|
547
|
-
'RoboMaker' => 'robomaker',
|
|
548
576
|
'RolesAnywhere' => 'rolesanywhere',
|
|
549
577
|
'Route53' => 'route53',
|
|
550
578
|
'Route53Domains' => 'route53domains',
|
|
579
|
+
'Route53GlobalResolver' => 'route53globalresolver',
|
|
580
|
+
'Route53Profiles' => 'route53profiles',
|
|
551
581
|
'Route53RecoveryCluster' => 'route53-recovery-cluster',
|
|
552
582
|
'Route53RecoveryControlConfig' => 'route53-recovery-control-config',
|
|
553
583
|
'Route53RecoveryReadiness' => 'route53-recovery-readiness',
|
|
@@ -555,14 +585,17 @@ module Aws
|
|
|
555
585
|
'S3' => 's3',
|
|
556
586
|
'S3Control' => 's3-control',
|
|
557
587
|
'S3Outposts' => 's3-outposts',
|
|
588
|
+
'S3Tables' => 's3tables',
|
|
589
|
+
'S3Vectors' => 's3vectors',
|
|
558
590
|
'SES' => 'email',
|
|
559
591
|
'SESV2' => 'email',
|
|
560
|
-
'SMS' => 'sms',
|
|
561
592
|
'SNS' => 'sns',
|
|
562
593
|
'SQS' => 'sqs',
|
|
563
594
|
'SSM' => 'ssm',
|
|
564
595
|
'SSMContacts' => 'ssm-contacts',
|
|
596
|
+
'SSMGuiConnect' => 'ssm-guiconnect',
|
|
565
597
|
'SSMIncidents' => 'ssm-incidents',
|
|
598
|
+
'SSMQuickSetup' => 'ssm-quicksetup',
|
|
566
599
|
'SSO' => 'portal.sso',
|
|
567
600
|
'SSOAdmin' => 'sso',
|
|
568
601
|
'SSOOIDC' => 'oidc',
|
|
@@ -573,12 +606,14 @@ module Aws
|
|
|
573
606
|
'SageMakerGeospatial' => 'sagemaker-geospatial',
|
|
574
607
|
'SageMakerMetrics' => 'metrics.sagemaker',
|
|
575
608
|
'SageMakerRuntime' => 'runtime.sagemaker',
|
|
609
|
+
'SageMakerRuntimeHTTP2' => 'runtime.sagemaker',
|
|
576
610
|
'SagemakerEdgeManager' => 'edge.sagemaker',
|
|
577
611
|
'SavingsPlans' => 'savingsplans',
|
|
578
612
|
'Scheduler' => 'scheduler',
|
|
579
613
|
'Schemas' => 'schemas',
|
|
580
614
|
'SecretsManager' => 'secretsmanager',
|
|
581
615
|
'SecurityHub' => 'securityhub',
|
|
616
|
+
'SecurityIR' => 'security-ir',
|
|
582
617
|
'SecurityLake' => 'securitylake',
|
|
583
618
|
'ServerlessApplicationRepository' => 'serverlessrepo',
|
|
584
619
|
'ServiceCatalog' => 'servicecatalog',
|
|
@@ -586,17 +621,22 @@ module Aws
|
|
|
586
621
|
'ServiceQuotas' => 'servicequotas',
|
|
587
622
|
'Shield' => 'shield',
|
|
588
623
|
'Signer' => 'signer',
|
|
624
|
+
'Signin' => 'signin',
|
|
589
625
|
'SimSpaceWeaver' => 'simspaceweaver',
|
|
590
626
|
'SimpleDB' => 'sdb',
|
|
591
627
|
'SnowDeviceManagement' => 'snow-device-management',
|
|
592
628
|
'Snowball' => 'snowball',
|
|
629
|
+
'SocialMessaging' => 'social-messaging',
|
|
593
630
|
'SsmSap' => 'ssm-sap',
|
|
594
631
|
'States' => 'states',
|
|
595
632
|
'StorageGateway' => 'storagegateway',
|
|
633
|
+
'SupplyChain' => 'scn',
|
|
596
634
|
'Support' => 'support',
|
|
597
635
|
'SupportApp' => 'supportapp',
|
|
598
636
|
'Synthetics' => 'synthetics',
|
|
637
|
+
'TaxSettings' => 'tax',
|
|
599
638
|
'Textract' => 'textract',
|
|
639
|
+
'TimestreamInfluxDB' => 'timestream-influxdb',
|
|
600
640
|
'TimestreamQuery' => 'query.timestream',
|
|
601
641
|
'TimestreamWrite' => 'ingest.timestream',
|
|
602
642
|
'Tnb' => 'tnb',
|
|
@@ -612,13 +652,14 @@ module Aws
|
|
|
612
652
|
'WAFRegional' => 'waf-regional',
|
|
613
653
|
'WAFV2' => 'wafv2',
|
|
614
654
|
'WellArchitected' => 'wellarchitected',
|
|
655
|
+
'Wickr' => 'admin.wickr',
|
|
615
656
|
'WorkDocs' => 'workdocs',
|
|
616
|
-
'WorkLink' => 'worklink',
|
|
617
657
|
'WorkMail' => 'workmail',
|
|
618
658
|
'WorkMailMessageFlow' => 'workmailmessageflow',
|
|
619
659
|
'WorkSpaces' => 'workspaces',
|
|
620
660
|
'WorkSpacesThinClient' => 'thinclient',
|
|
621
661
|
'WorkSpacesWeb' => 'workspaces-web',
|
|
662
|
+
'WorkspacesInstances' => 'workspaces-instances',
|
|
622
663
|
'XRay' => 'xray',
|
|
623
664
|
}
|
|
624
665
|
# 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
|
}
|