aws-partitions 1.834.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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.834.0
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
@@ -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,20 +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',
282
+ 'B2bi' => 'b2bi',
283
+ 'BCMDashboards' => 'bcm-dashboards',
284
+ 'BCMDataExports' => 'bcm-data-exports',
285
+ 'BCMPricingCalculator' => 'bcm-pricing-calculator',
286
+ 'BCMRecommendedActions' => 'bcm-recommended-actions',
278
287
  'Backup' => 'backup',
279
288
  'BackupGateway' => 'backup-gateway',
280
- 'BackupStorage' => 'backupstorage',
289
+ 'BackupSearch' => 'backup-search',
281
290
  'Batch' => 'batch',
282
291
  'Bedrock' => 'bedrock',
292
+ 'BedrockAgent' => 'bedrock-agent',
293
+ 'BedrockAgentCore' => 'bedrock-agentcore',
294
+ 'BedrockAgentCoreControl' => 'bedrock-agentcore-control',
295
+ 'BedrockAgentRuntime' => 'bedrock-agent-runtime',
296
+ 'BedrockDataAutomation' => 'bedrock-data-automation',
297
+ 'BedrockDataAutomationRuntime' => 'bedrock-data-automation-runtime',
283
298
  'BedrockRuntime' => 'bedrock-runtime',
299
+ 'Billing' => 'billing',
284
300
  'BillingConductor' => 'billingconductor',
285
301
  'Braket' => 'braket',
286
302
  'Budgets' => 'budgets',
303
+ 'Chatbot' => 'chatbot',
287
304
  'Chime' => 'chime',
288
305
  'ChimeSDKIdentity' => 'identity-chime',
289
306
  'ChimeSDKMediaPipelines' => 'media-pipelines-chime',
@@ -291,11 +308,13 @@ module Aws
291
308
  'ChimeSDKMessaging' => 'messaging-chime',
292
309
  'ChimeSDKVoice' => 'voice-chime',
293
310
  'CleanRooms' => 'cleanrooms',
311
+ 'CleanRoomsML' => 'cleanrooms-ml',
294
312
  'Cloud9' => 'cloud9',
295
313
  'CloudControlApi' => 'cloudcontrolapi',
296
314
  'CloudDirectory' => 'clouddirectory',
297
315
  'CloudFormation' => 'cloudformation',
298
316
  'CloudFront' => 'cloudfront',
317
+ 'CloudFrontKeyValueStore' => 'cloudfront-keyvaluestore',
299
318
  'CloudHSM' => 'cloudhsm',
300
319
  'CloudHSMV2' => 'cloudhsmv2',
301
320
  'CloudSearch' => 'cloudsearch',
@@ -310,12 +329,12 @@ module Aws
310
329
  'CodeBuild' => 'codebuild',
311
330
  'CodeCatalyst' => 'codecatalyst',
312
331
  'CodeCommit' => 'codecommit',
332
+ 'CodeConnections' => 'codeconnections',
313
333
  'CodeDeploy' => 'codedeploy',
314
334
  'CodeGuruProfiler' => 'codeguru-profiler',
315
335
  'CodeGuruReviewer' => 'codeguru-reviewer',
316
336
  'CodeGuruSecurity' => 'codeguru-security',
317
337
  'CodePipeline' => 'codepipeline',
318
- 'CodeStar' => 'codestar',
319
338
  'CodeStarNotifications' => 'codestar-notifications',
320
339
  'CodeStarconnections' => 'codestar-connections',
321
340
  'CognitoIdentity' => 'cognito-identity',
@@ -324,29 +343,36 @@ module Aws
324
343
  'Comprehend' => 'comprehend',
325
344
  'ComprehendMedical' => 'comprehendmedical',
326
345
  'ComputeOptimizer' => 'compute-optimizer',
346
+ 'ComputeOptimizerAutomation' => 'aco-automation',
327
347
  'ConfigService' => 'config',
328
348
  'Connect' => 'connect',
329
349
  'ConnectCampaignService' => 'connect-campaigns',
350
+ 'ConnectCampaignsV2' => 'connect-campaigns',
330
351
  'ConnectCases' => 'cases',
331
352
  'ConnectContactLens' => 'contact-lens',
332
353
  'ConnectParticipant' => 'participant.connect',
333
354
  'ConnectWisdomService' => 'wisdom',
355
+ 'ControlCatalog' => 'controlcatalog',
334
356
  'ControlTower' => 'controltower',
335
357
  'CostExplorer' => 'ce',
358
+ 'CostOptimizationHub' => 'cost-optimization-hub',
336
359
  'CostandUsageReportService' => 'cur',
337
360
  'CustomerProfiles' => 'profile',
338
361
  'DAX' => 'dax',
339
362
  'DLM' => 'dlm',
363
+ 'DSQL' => 'dsql',
340
364
  'DataExchange' => 'dataexchange',
341
365
  'DataPipeline' => 'datapipeline',
342
366
  'DataSync' => 'datasync',
343
367
  'DataZone' => 'datazone',
344
368
  'DatabaseMigrationService' => 'dms',
369
+ 'Deadline' => 'deadline',
345
370
  'Detective' => 'api.detective',
346
371
  'DevOpsGuru' => 'devops-guru',
347
372
  'DeviceFarm' => 'devicefarm',
348
373
  'DirectConnect' => 'directconnect',
349
374
  'DirectoryService' => 'ds',
375
+ 'DirectoryServiceData' => 'ds-data',
350
376
  'DocDB' => 'rds',
351
377
  'DocDBElastic' => 'docdb-elastic',
352
378
  'Drs' => 'drs',
@@ -360,18 +386,19 @@ module Aws
360
386
  'ECS' => 'ecs',
361
387
  'EFS' => 'elasticfilesystem',
362
388
  'EKS' => 'eks',
389
+ 'EKSAuth' => 'eks-auth',
363
390
  'EMR' => 'elasticmapreduce',
364
391
  'EMRContainers' => 'emr-containers',
365
392
  'EMRServerless' => 'emr-serverless',
366
393
  'ElastiCache' => 'elasticache',
367
394
  'ElasticBeanstalk' => 'elasticbeanstalk',
368
- 'ElasticInference' => 'api.elastic-inference',
369
395
  'ElasticLoadBalancing' => 'elasticloadbalancing',
370
396
  'ElasticLoadBalancingV2' => 'elasticloadbalancing',
371
397
  'ElasticTranscoder' => 'elastictranscoder',
372
398
  'ElasticsearchService' => 'es',
373
399
  'EntityResolution' => 'entityresolution',
374
400
  'EventBridge' => 'events',
401
+ 'Evs' => 'evs',
375
402
  'FIS' => 'fis',
376
403
  'FMS' => 'fms',
377
404
  'FSx' => 'fsx',
@@ -381,8 +408,12 @@ module Aws
381
408
  'ForecastQueryService' => 'forecastquery',
382
409
  'ForecastService' => 'forecast',
383
410
  'FraudDetector' => 'frauddetector',
411
+ 'FreeTier' => 'freetier',
384
412
  'GameLift' => 'gamelift',
385
- 'GameSparks' => 'gamesparks',
413
+ 'GameLiftStreams' => 'gameliftstreams',
414
+ 'GeoMaps' => 'geo-maps',
415
+ 'GeoPlaces' => 'geo-places',
416
+ 'GeoRoutes' => 'geo-routes',
386
417
  'Glacier' => 'glacier',
387
418
  'GlobalAccelerator' => 'globalaccelerator',
388
419
  'Glue' => 'glue',
@@ -393,7 +424,6 @@ module Aws
393
424
  'GuardDuty' => 'guardduty',
394
425
  'Health' => 'health',
395
426
  'HealthLake' => 'healthlake',
396
- 'Honeycode' => 'honeycode',
397
427
  'IAM' => 'iam',
398
428
  'IVS' => 'ivs',
399
429
  'IVSRealTime' => 'ivsrealtime',
@@ -402,18 +432,17 @@ module Aws
402
432
  'ImportExport' => 'importexport',
403
433
  'Inspector' => 'inspector',
404
434
  'Inspector2' => 'inspector2',
435
+ 'InspectorScan' => 'inspector-scan',
405
436
  'InternetMonitor' => 'internetmonitor',
437
+ 'Invoicing' => 'invoicing',
406
438
  'IoT' => 'iot',
407
- 'IoT1ClickDevicesService' => 'devices.iot1click',
408
- 'IoT1ClickProjects' => 'projects.iot1click',
409
439
  'IoTAnalytics' => 'iotanalytics',
410
440
  'IoTDeviceAdvisor' => 'api.iotdeviceadvisor',
411
441
  'IoTEvents' => 'iotevents',
412
442
  'IoTEventsData' => 'data.iotevents',
413
- 'IoTFleetHub' => 'api.fleethub.iot',
414
443
  'IoTFleetWise' => 'iotfleetwise',
415
444
  'IoTJobsDataPlane' => 'data.jobs.iot',
416
- 'IoTRoboRunner' => 'iotroborunner',
445
+ 'IoTManagedIntegrations' => 'api.iotmanagedintegrations',
417
446
  'IoTSecureTunneling' => 'api.tunneling.iot',
418
447
  'IoTSiteWise' => 'iotsitewise',
419
448
  'IoTThingsGraph' => 'iotthingsgraph',
@@ -426,6 +455,7 @@ module Aws
426
455
  'Kendra' => 'kendra',
427
456
  'KendraRanking' => 'kendra-ranking',
428
457
  'Keyspaces' => 'cassandra',
458
+ 'KeyspacesStreams' => 'cassandra-streams',
429
459
  'Kinesis' => 'kinesis',
430
460
  'KinesisAnalytics' => 'kinesisanalytics',
431
461
  'KinesisAnalyticsV2' => 'kinesisanalytics',
@@ -436,7 +466,7 @@ module Aws
436
466
  'KinesisVideoWebRTCStorage' => 'kinesisvideo',
437
467
  'LakeFormation' => 'lakeformation',
438
468
  'Lambda' => 'lambda',
439
- 'LambdaPreview' => 'lambda',
469
+ 'LaunchWizard' => 'launchwizard',
440
470
  'Lex' => 'runtime.lex',
441
471
  'LexModelBuildingService' => 'models.lex',
442
472
  'LexModelsV2' => 'models-v2-lex',
@@ -447,22 +477,25 @@ module Aws
447
477
  'Lightsail' => 'lightsail',
448
478
  'LocationService' => 'geo',
449
479
  'LookoutEquipment' => 'lookoutequipment',
450
- 'LookoutMetrics' => 'lookoutmetrics',
451
- 'LookoutforVision' => 'lookoutvision',
480
+ 'MPA' => 'mpa',
452
481
  'MQ' => 'mq',
453
482
  'MTurk' => 'mturk-requester',
454
483
  'MWAA' => 'airflow',
484
+ 'MWAAServerless' => 'airflow-serverless',
455
485
  'MachineLearning' => 'machinelearning',
456
- 'Macie' => 'macie',
457
486
  'Macie2' => 'macie2',
487
+ 'MailManager' => 'mail-manager',
458
488
  'MainframeModernization' => 'm2',
459
489
  'ManagedBlockchain' => 'managedblockchain',
460
490
  'ManagedBlockchainQuery' => 'managedblockchain-query',
461
491
  'ManagedGrafana' => 'grafana',
492
+ 'MarketplaceAgreement' => 'agreement-marketplace',
462
493
  'MarketplaceCatalog' => 'catalog.marketplace',
463
494
  'MarketplaceCommerceAnalytics' => 'marketplacecommerceanalytics',
495
+ 'MarketplaceDeployment' => 'deployment-marketplace',
464
496
  'MarketplaceEntitlementService' => 'entitlement.marketplace',
465
497
  'MarketplaceMetering' => 'metering.marketplace',
498
+ 'MarketplaceReporting' => 'reporting-marketplace',
466
499
  'MediaConnect' => 'mediaconnect',
467
500
  'MediaConvert' => 'mediaconvert',
468
501
  'MediaLive' => 'medialive',
@@ -480,26 +513,36 @@ module Aws
480
513
  'MigrationHubOrchestrator' => 'migrationhub-orchestrator',
481
514
  'MigrationHubRefactorSpaces' => 'refactor-spaces',
482
515
  'MigrationHubStrategyRecommendations' => 'migrationhub-strategy',
483
- 'Mobile' => 'mobile',
484
516
  'Neptune' => 'rds',
517
+ 'NeptuneGraph' => 'neptune-graph',
485
518
  'Neptunedata' => 'neptune-db',
486
519
  'NetworkFirewall' => 'network-firewall',
520
+ 'NetworkFlowMonitor' => 'networkflowmonitor',
487
521
  'NetworkManager' => 'networkmanager',
488
- 'NimbleStudio' => 'nimble',
522
+ 'NetworkMonitor' => 'networkmonitor',
523
+ 'Notifications' => 'notifications',
524
+ 'NotificationsContacts' => 'notifications-contacts',
525
+ 'NovaAct' => 'nova-act',
489
526
  'OAM' => 'oam',
490
527
  'OSIS' => 'osis',
528
+ 'ObservabilityAdmin' => 'observabilityadmin',
529
+ 'Odb' => 'odb',
491
530
  'Omics' => 'omics',
492
531
  'OpenSearchServerless' => 'aoss',
493
532
  'OpenSearchService' => 'es',
494
- 'OpsWorks' => 'opsworks',
495
- 'OpsWorksCM' => 'opsworks-cm',
496
533
  'Organizations' => 'organizations',
497
534
  'Outposts' => 'outposts',
535
+ 'PCS' => 'pcs',
498
536
  'PI' => 'pi',
499
537
  'Panorama' => 'panorama',
538
+ 'PartnerCentralAccount' => 'partnercentral-account',
539
+ 'PartnerCentralBenefits' => 'partnercentral-benefits',
540
+ 'PartnerCentralChannel' => 'partnercentral-channel',
541
+ 'PartnerCentralSelling' => 'partnercentral-selling',
500
542
  'PaymentCryptography' => 'controlplane.payment-cryptography',
501
543
  'PaymentCryptographyData' => 'dataplane.payment-cryptography',
502
544
  'PcaConnectorAd' => 'pca-connector-ad',
545
+ 'PcaConnectorScep' => 'pca-connector-scep',
503
546
  'Personalize' => 'personalize',
504
547
  'PersonalizeEvents' => 'personalize-events',
505
548
  'PersonalizeRuntime' => 'personalize-runtime',
@@ -510,28 +553,31 @@ module Aws
510
553
  'Pipes' => 'pipes',
511
554
  'Polly' => 'polly',
512
555
  'Pricing' => 'api.pricing',
513
- 'PrivateNetworks' => 'private-networks',
514
556
  'PrometheusService' => 'aps',
515
557
  'Proton' => 'proton',
516
- 'QLDB' => 'qldb',
517
- 'QLDBSession' => 'session.qldb',
558
+ 'QApps' => 'data.qapps',
559
+ 'QBusiness' => 'qbusiness',
560
+ 'QConnect' => 'wisdom',
518
561
  'QuickSight' => 'quicksight',
519
562
  'RAM' => 'ram',
520
563
  'RDS' => 'rds',
521
564
  'RDSDataService' => 'rds-data',
565
+ 'RTBFabric' => 'rtbfabric',
522
566
  'RecycleBin' => 'rbin',
523
567
  'Redshift' => 'redshift',
524
568
  'RedshiftDataAPIService' => 'redshift-data',
525
569
  'RedshiftServerless' => 'redshift-serverless',
526
570
  'Rekognition' => 'rekognition',
571
+ 'Repostspace' => 'repostspace',
527
572
  'ResilienceHub' => 'resiliencehub',
528
573
  'ResourceExplorer2' => 'resource-explorer-2',
529
574
  'ResourceGroups' => 'resource-groups',
530
575
  'ResourceGroupsTaggingAPI' => 'tagging',
531
- 'RoboMaker' => 'robomaker',
532
576
  'RolesAnywhere' => 'rolesanywhere',
533
577
  'Route53' => 'route53',
534
578
  'Route53Domains' => 'route53domains',
579
+ 'Route53GlobalResolver' => 'route53globalresolver',
580
+ 'Route53Profiles' => 'route53profiles',
535
581
  'Route53RecoveryCluster' => 'route53-recovery-cluster',
536
582
  'Route53RecoveryControlConfig' => 'route53-recovery-control-config',
537
583
  'Route53RecoveryReadiness' => 'route53-recovery-readiness',
@@ -539,14 +585,17 @@ module Aws
539
585
  'S3' => 's3',
540
586
  'S3Control' => 's3-control',
541
587
  'S3Outposts' => 's3-outposts',
588
+ 'S3Tables' => 's3tables',
589
+ 'S3Vectors' => 's3vectors',
542
590
  'SES' => 'email',
543
591
  'SESV2' => 'email',
544
- 'SMS' => 'sms',
545
592
  'SNS' => 'sns',
546
593
  'SQS' => 'sqs',
547
594
  'SSM' => 'ssm',
548
595
  'SSMContacts' => 'ssm-contacts',
596
+ 'SSMGuiConnect' => 'ssm-guiconnect',
549
597
  'SSMIncidents' => 'ssm-incidents',
598
+ 'SSMQuickSetup' => 'ssm-quicksetup',
550
599
  'SSO' => 'portal.sso',
551
600
  'SSOAdmin' => 'sso',
552
601
  'SSOOIDC' => 'oidc',
@@ -557,12 +606,14 @@ module Aws
557
606
  'SageMakerGeospatial' => 'sagemaker-geospatial',
558
607
  'SageMakerMetrics' => 'metrics.sagemaker',
559
608
  'SageMakerRuntime' => 'runtime.sagemaker',
609
+ 'SageMakerRuntimeHTTP2' => 'runtime.sagemaker',
560
610
  'SagemakerEdgeManager' => 'edge.sagemaker',
561
611
  'SavingsPlans' => 'savingsplans',
562
612
  'Scheduler' => 'scheduler',
563
613
  'Schemas' => 'schemas',
564
614
  'SecretsManager' => 'secretsmanager',
565
615
  'SecurityHub' => 'securityhub',
616
+ 'SecurityIR' => 'security-ir',
566
617
  'SecurityLake' => 'securitylake',
567
618
  'ServerlessApplicationRepository' => 'serverlessrepo',
568
619
  'ServiceCatalog' => 'servicecatalog',
@@ -570,17 +621,22 @@ module Aws
570
621
  'ServiceQuotas' => 'servicequotas',
571
622
  'Shield' => 'shield',
572
623
  'Signer' => 'signer',
624
+ 'Signin' => 'signin',
573
625
  'SimSpaceWeaver' => 'simspaceweaver',
574
626
  'SimpleDB' => 'sdb',
575
627
  'SnowDeviceManagement' => 'snow-device-management',
576
628
  'Snowball' => 'snowball',
629
+ 'SocialMessaging' => 'social-messaging',
577
630
  'SsmSap' => 'ssm-sap',
578
631
  'States' => 'states',
579
632
  'StorageGateway' => 'storagegateway',
633
+ 'SupplyChain' => 'scn',
580
634
  'Support' => 'support',
581
635
  'SupportApp' => 'supportapp',
582
636
  'Synthetics' => 'synthetics',
637
+ 'TaxSettings' => 'tax',
583
638
  'Textract' => 'textract',
639
+ 'TimestreamInfluxDB' => 'timestream-influxdb',
584
640
  'TimestreamQuery' => 'query.timestream',
585
641
  'TimestreamWrite' => 'ingest.timestream',
586
642
  'Tnb' => 'tnb',
@@ -588,6 +644,7 @@ module Aws
588
644
  'TranscribeStreamingService' => 'transcribestreaming',
589
645
  'Transfer' => 'transfer',
590
646
  'Translate' => 'translate',
647
+ 'TrustedAdvisor' => 'trustedadvisor',
591
648
  'VPCLattice' => 'vpc-lattice',
592
649
  'VerifiedPermissions' => 'verifiedpermissions',
593
650
  'VoiceID' => 'voiceid',
@@ -595,12 +652,14 @@ module Aws
595
652
  'WAFRegional' => 'waf-regional',
596
653
  'WAFV2' => 'wafv2',
597
654
  'WellArchitected' => 'wellarchitected',
655
+ 'Wickr' => 'admin.wickr',
598
656
  'WorkDocs' => 'workdocs',
599
- 'WorkLink' => 'worklink',
600
657
  'WorkMail' => 'workmail',
601
658
  'WorkMailMessageFlow' => 'workmailmessageflow',
602
659
  'WorkSpaces' => 'workspaces',
660
+ 'WorkSpacesThinClient' => 'thinclient',
603
661
  'WorkSpacesWeb' => 'workspaces-web',
662
+ 'WorkspacesInstances' => 'workspaces-instances',
604
663
  'XRay' => 'xray',
605
664
  }
606
665
  # end service ids
@@ -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,12 +47,24 @@
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" : "AWS Standard global region"
60
+ "description" : "aws global region"
49
61
  },
50
62
  "ca-central-1" : {
51
63
  "description" : "Canada (Central)"
52
64
  },
65
+ "ca-west-1" : {
66
+ "description" : "Canada West (Calgary)"
67
+ },
53
68
  "eu-central-1" : {
54
69
  "description" : "Europe (Frankfurt)"
55
70
  },
@@ -83,6 +98,9 @@
83
98
  "me-south-1" : {
84
99
  "description" : "Middle East (Bahrain)"
85
100
  },
101
+ "mx-central-1" : {
102
+ "description" : "Mexico (Central)"
103
+ },
86
104
  "sa-east-1" : {
87
105
  "description" : "South America (Sao Paulo)"
88
106
  },
@@ -112,7 +130,7 @@
112
130
  "regionRegex" : "^cn\\-\\w+\\-\\d+$",
113
131
  "regions" : {
114
132
  "aws-cn-global" : {
115
- "description" : "AWS China global region"
133
+ "description" : "aws-cn global region"
116
134
  },
117
135
  "cn-north-1" : {
118
136
  "description" : "China (Beijing)"
@@ -122,41 +140,35 @@
122
140
  }
123
141
  }
124
142
  }, {
125
- "id" : "aws-us-gov",
143
+ "id" : "aws-eusc",
126
144
  "outputs" : {
127
- "dnsSuffix" : "amazonaws.com",
128
- "dualStackDnsSuffix" : "api.aws",
129
- "implicitGlobalRegion" : "us-gov-west-1",
130
- "name" : "aws-us-gov",
145
+ "dnsSuffix" : "amazonaws.eu",
146
+ "dualStackDnsSuffix" : "api.amazonwebservices.eu",
147
+ "implicitGlobalRegion" : "eusc-de-east-1",
148
+ "name" : "aws-eusc",
131
149
  "supportsDualStack" : true,
132
150
  "supportsFIPS" : true
133
151
  },
134
- "regionRegex" : "^us\\-gov\\-\\w+\\-\\d+$",
152
+ "regionRegex" : "^eusc\\-(de)\\-\\w+\\-\\d+$",
135
153
  "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)"
154
+ "eusc-de-east-1" : {
155
+ "description" : "EU (Germany)"
144
156
  }
145
157
  }
146
158
  }, {
147
159
  "id" : "aws-iso",
148
160
  "outputs" : {
149
161
  "dnsSuffix" : "c2s.ic.gov",
150
- "dualStackDnsSuffix" : "c2s.ic.gov",
162
+ "dualStackDnsSuffix" : "api.aws.ic.gov",
151
163
  "implicitGlobalRegion" : "us-iso-east-1",
152
164
  "name" : "aws-iso",
153
- "supportsDualStack" : false,
165
+ "supportsDualStack" : true,
154
166
  "supportsFIPS" : true
155
167
  },
156
168
  "regionRegex" : "^us\\-iso\\-\\w+\\-\\d+$",
157
169
  "regions" : {
158
170
  "aws-iso-global" : {
159
- "description" : "AWS ISO (US) global region"
171
+ "description" : "aws-iso global region"
160
172
  },
161
173
  "us-iso-east-1" : {
162
174
  "description" : "US ISO East"
@@ -169,45 +181,87 @@
169
181
  "id" : "aws-iso-b",
170
182
  "outputs" : {
171
183
  "dnsSuffix" : "sc2s.sgov.gov",
172
- "dualStackDnsSuffix" : "sc2s.sgov.gov",
184
+ "dualStackDnsSuffix" : "api.aws.scloud",
173
185
  "implicitGlobalRegion" : "us-isob-east-1",
174
186
  "name" : "aws-iso-b",
175
- "supportsDualStack" : false,
187
+ "supportsDualStack" : true,
176
188
  "supportsFIPS" : true
177
189
  },
178
190
  "regionRegex" : "^us\\-isob\\-\\w+\\-\\d+$",
179
191
  "regions" : {
180
192
  "aws-iso-b-global" : {
181
- "description" : "AWS ISOB (US) global region"
193
+ "description" : "aws-iso-b global region"
182
194
  },
183
195
  "us-isob-east-1" : {
184
196
  "description" : "US ISOB East (Ohio)"
197
+ },
198
+ "us-isob-west-1" : {
199
+ "description" : "US ISOB West"
185
200
  }
186
201
  }
187
202
  }, {
188
203
  "id" : "aws-iso-e",
189
204
  "outputs" : {
190
205
  "dnsSuffix" : "cloud.adc-e.uk",
191
- "dualStackDnsSuffix" : "cloud.adc-e.uk",
206
+ "dualStackDnsSuffix" : "api.cloud-aws.adc-e.uk",
192
207
  "implicitGlobalRegion" : "eu-isoe-west-1",
193
208
  "name" : "aws-iso-e",
194
- "supportsDualStack" : false,
209
+ "supportsDualStack" : true,
195
210
  "supportsFIPS" : true
196
211
  },
197
212
  "regionRegex" : "^eu\\-isoe\\-\\w+\\-\\d+$",
198
- "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
+ }
199
221
  }, {
200
222
  "id" : "aws-iso-f",
201
223
  "outputs" : {
202
224
  "dnsSuffix" : "csp.hci.ic.gov",
203
- "dualStackDnsSuffix" : "csp.hci.ic.gov",
225
+ "dualStackDnsSuffix" : "api.aws.hci.ic.gov",
204
226
  "implicitGlobalRegion" : "us-isof-south-1",
205
227
  "name" : "aws-iso-f",
206
- "supportsDualStack" : false,
228
+ "supportsDualStack" : true,
207
229
  "supportsFIPS" : true
208
230
  },
209
231
  "regionRegex" : "^us\\-isof\\-\\w+\\-\\d+$",
210
- "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
+ }
211
265
  } ],
212
266
  "version" : "1.1"
213
267
  }