aws-partitions 1.889.0 → 1.1140.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 +1274 -0
- data/VERSION +1 -1
- data/lib/aws-partitions/metadata.rb +32 -0
- data/lib/aws-partitions.rb +50 -13
- data/partitions-metadata.json +48 -3
- data/partitions.json +27560 -15059
- metadata +5 -8
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.1140.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',
|
@@ -265,11 +267,14 @@ module Aws
|
|
265
267
|
'AppRunner' => 'apprunner',
|
266
268
|
'AppStream' => 'appstream2',
|
267
269
|
'AppSync' => 'appsync',
|
270
|
+
'AppTest' => 'apptest',
|
268
271
|
'Appflow' => 'appflow',
|
269
272
|
'ApplicationAutoScaling' => 'application-autoscaling',
|
270
273
|
'ApplicationCostProfiler' => 'application-cost-profiler',
|
271
274
|
'ApplicationDiscoveryService' => 'discovery',
|
272
275
|
'ApplicationInsights' => 'applicationinsights',
|
276
|
+
'ApplicationSignals' => 'application-signals',
|
277
|
+
'Artifact' => 'artifact',
|
273
278
|
'Athena' => 'athena',
|
274
279
|
'AuditManager' => 'auditmanager',
|
275
280
|
'AugmentedAIRuntime' => 'a2i-runtime.sagemaker',
|
@@ -277,17 +282,24 @@ module Aws
|
|
277
282
|
'AutoScalingPlans' => 'autoscaling-plans',
|
278
283
|
'B2bi' => 'b2bi',
|
279
284
|
'BCMDataExports' => 'bcm-data-exports',
|
285
|
+
'BCMPricingCalculator' => 'bcm-pricing-calculator',
|
280
286
|
'Backup' => 'backup',
|
281
287
|
'BackupGateway' => 'backup-gateway',
|
282
|
-
'
|
288
|
+
'BackupSearch' => 'backup-search',
|
283
289
|
'Batch' => 'batch',
|
284
290
|
'Bedrock' => 'bedrock',
|
285
291
|
'BedrockAgent' => 'bedrock-agent',
|
292
|
+
'BedrockAgentCore' => 'bedrock-agentcore',
|
293
|
+
'BedrockAgentCoreControl' => 'bedrock-agentcore-control',
|
286
294
|
'BedrockAgentRuntime' => 'bedrock-agent-runtime',
|
295
|
+
'BedrockDataAutomation' => 'bedrock-data-automation',
|
296
|
+
'BedrockDataAutomationRuntime' => 'bedrock-data-automation-runtime',
|
287
297
|
'BedrockRuntime' => 'bedrock-runtime',
|
298
|
+
'Billing' => 'billing',
|
288
299
|
'BillingConductor' => 'billingconductor',
|
289
300
|
'Braket' => 'braket',
|
290
301
|
'Budgets' => 'budgets',
|
302
|
+
'Chatbot' => 'chatbot',
|
291
303
|
'Chime' => 'chime',
|
292
304
|
'ChimeSDKIdentity' => 'identity-chime',
|
293
305
|
'ChimeSDKMediaPipelines' => 'media-pipelines-chime',
|
@@ -316,12 +328,12 @@ module Aws
|
|
316
328
|
'CodeBuild' => 'codebuild',
|
317
329
|
'CodeCatalyst' => 'codecatalyst',
|
318
330
|
'CodeCommit' => 'codecommit',
|
331
|
+
'CodeConnections' => 'codeconnections',
|
319
332
|
'CodeDeploy' => 'codedeploy',
|
320
333
|
'CodeGuruProfiler' => 'codeguru-profiler',
|
321
334
|
'CodeGuruReviewer' => 'codeguru-reviewer',
|
322
335
|
'CodeGuruSecurity' => 'codeguru-security',
|
323
336
|
'CodePipeline' => 'codepipeline',
|
324
|
-
'CodeStar' => 'codestar',
|
325
337
|
'CodeStarNotifications' => 'codestar-notifications',
|
326
338
|
'CodeStarconnections' => 'codestar-connections',
|
327
339
|
'CognitoIdentity' => 'cognito-identity',
|
@@ -333,10 +345,12 @@ module Aws
|
|
333
345
|
'ConfigService' => 'config',
|
334
346
|
'Connect' => 'connect',
|
335
347
|
'ConnectCampaignService' => 'connect-campaigns',
|
348
|
+
'ConnectCampaignsV2' => 'connect-campaigns',
|
336
349
|
'ConnectCases' => 'cases',
|
337
350
|
'ConnectContactLens' => 'contact-lens',
|
338
351
|
'ConnectParticipant' => 'participant.connect',
|
339
352
|
'ConnectWisdomService' => 'wisdom',
|
353
|
+
'ControlCatalog' => 'controlcatalog',
|
340
354
|
'ControlTower' => 'controltower',
|
341
355
|
'CostExplorer' => 'ce',
|
342
356
|
'CostOptimizationHub' => 'cost-optimization-hub',
|
@@ -344,16 +358,19 @@ module Aws
|
|
344
358
|
'CustomerProfiles' => 'profile',
|
345
359
|
'DAX' => 'dax',
|
346
360
|
'DLM' => 'dlm',
|
361
|
+
'DSQL' => 'dsql',
|
347
362
|
'DataExchange' => 'dataexchange',
|
348
363
|
'DataPipeline' => 'datapipeline',
|
349
364
|
'DataSync' => 'datasync',
|
350
365
|
'DataZone' => 'datazone',
|
351
366
|
'DatabaseMigrationService' => 'dms',
|
367
|
+
'Deadline' => 'deadline',
|
352
368
|
'Detective' => 'api.detective',
|
353
369
|
'DevOpsGuru' => 'devops-guru',
|
354
370
|
'DeviceFarm' => 'devicefarm',
|
355
371
|
'DirectConnect' => 'directconnect',
|
356
372
|
'DirectoryService' => 'ds',
|
373
|
+
'DirectoryServiceData' => 'ds-data',
|
357
374
|
'DocDB' => 'rds',
|
358
375
|
'DocDBElastic' => 'docdb-elastic',
|
359
376
|
'Drs' => 'drs',
|
@@ -373,13 +390,13 @@ module Aws
|
|
373
390
|
'EMRServerless' => 'emr-serverless',
|
374
391
|
'ElastiCache' => 'elasticache',
|
375
392
|
'ElasticBeanstalk' => 'elasticbeanstalk',
|
376
|
-
'ElasticInference' => 'api.elastic-inference',
|
377
393
|
'ElasticLoadBalancing' => 'elasticloadbalancing',
|
378
394
|
'ElasticLoadBalancingV2' => 'elasticloadbalancing',
|
379
395
|
'ElasticTranscoder' => 'elastictranscoder',
|
380
396
|
'ElasticsearchService' => 'es',
|
381
397
|
'EntityResolution' => 'entityresolution',
|
382
398
|
'EventBridge' => 'events',
|
399
|
+
'Evs' => 'evs',
|
383
400
|
'FIS' => 'fis',
|
384
401
|
'FMS' => 'fms',
|
385
402
|
'FSx' => 'fsx',
|
@@ -391,6 +408,10 @@ module Aws
|
|
391
408
|
'FraudDetector' => 'frauddetector',
|
392
409
|
'FreeTier' => 'freetier',
|
393
410
|
'GameLift' => 'gamelift',
|
411
|
+
'GameLiftStreams' => 'gameliftstreams',
|
412
|
+
'GeoMaps' => 'geo-maps',
|
413
|
+
'GeoPlaces' => 'geo-places',
|
414
|
+
'GeoRoutes' => 'geo-routes',
|
394
415
|
'Glacier' => 'glacier',
|
395
416
|
'GlobalAccelerator' => 'globalaccelerator',
|
396
417
|
'Glue' => 'glue',
|
@@ -401,7 +422,6 @@ module Aws
|
|
401
422
|
'GuardDuty' => 'guardduty',
|
402
423
|
'Health' => 'health',
|
403
424
|
'HealthLake' => 'healthlake',
|
404
|
-
'Honeycode' => 'honeycode',
|
405
425
|
'IAM' => 'iam',
|
406
426
|
'IVS' => 'ivs',
|
407
427
|
'IVSRealTime' => 'ivsrealtime',
|
@@ -412,9 +432,8 @@ module Aws
|
|
412
432
|
'Inspector2' => 'inspector2',
|
413
433
|
'InspectorScan' => 'inspector-scan',
|
414
434
|
'InternetMonitor' => 'internetmonitor',
|
435
|
+
'Invoicing' => 'invoicing',
|
415
436
|
'IoT' => 'iot',
|
416
|
-
'IoT1ClickDevicesService' => 'devices.iot1click',
|
417
|
-
'IoT1ClickProjects' => 'projects.iot1click',
|
418
437
|
'IoTAnalytics' => 'iotanalytics',
|
419
438
|
'IoTDeviceAdvisor' => 'api.iotdeviceadvisor',
|
420
439
|
'IoTEvents' => 'iotevents',
|
@@ -422,7 +441,7 @@ module Aws
|
|
422
441
|
'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',
|
@@ -459,11 +478,13 @@ module Aws
|
|
459
478
|
'LookoutEquipment' => 'lookoutequipment',
|
460
479
|
'LookoutMetrics' => 'lookoutmetrics',
|
461
480
|
'LookoutforVision' => 'lookoutvision',
|
481
|
+
'MPA' => 'mpa',
|
462
482
|
'MQ' => 'mq',
|
463
483
|
'MTurk' => 'mturk-requester',
|
464
484
|
'MWAA' => 'airflow',
|
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,16 +513,19 @@ 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',
|
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',
|
@@ -508,11 +533,14 @@ module Aws
|
|
508
533
|
'OpsWorksCM' => 'opsworks-cm',
|
509
534
|
'Organizations' => 'organizations',
|
510
535
|
'Outposts' => 'outposts',
|
536
|
+
'PCS' => 'pcs',
|
511
537
|
'PI' => 'pi',
|
512
538
|
'Panorama' => 'panorama',
|
539
|
+
'PartnerCentralSelling' => 'partnercentral-selling',
|
513
540
|
'PaymentCryptography' => 'controlplane.payment-cryptography',
|
514
541
|
'PaymentCryptographyData' => 'dataplane.payment-cryptography',
|
515
542
|
'PcaConnectorAd' => 'pca-connector-ad',
|
543
|
+
'PcaConnectorScep' => 'pca-connector-scep',
|
516
544
|
'Personalize' => 'personalize',
|
517
545
|
'PersonalizeEvents' => 'personalize-events',
|
518
546
|
'PersonalizeRuntime' => 'personalize-runtime',
|
@@ -523,9 +551,9 @@ module Aws
|
|
523
551
|
'Pipes' => 'pipes',
|
524
552
|
'Polly' => 'polly',
|
525
553
|
'Pricing' => 'api.pricing',
|
526
|
-
'PrivateNetworks' => 'private-networks',
|
527
554
|
'PrometheusService' => 'aps',
|
528
555
|
'Proton' => 'proton',
|
556
|
+
'QApps' => 'data.qapps',
|
529
557
|
'QBusiness' => 'qbusiness',
|
530
558
|
'QConnect' => 'wisdom',
|
531
559
|
'QLDB' => 'qldb',
|
@@ -548,6 +576,7 @@ module Aws
|
|
548
576
|
'RolesAnywhere' => 'rolesanywhere',
|
549
577
|
'Route53' => 'route53',
|
550
578
|
'Route53Domains' => 'route53domains',
|
579
|
+
'Route53Profiles' => 'route53profiles',
|
551
580
|
'Route53RecoveryCluster' => 'route53-recovery-cluster',
|
552
581
|
'Route53RecoveryControlConfig' => 'route53-recovery-control-config',
|
553
582
|
'Route53RecoveryReadiness' => 'route53-recovery-readiness',
|
@@ -555,6 +584,8 @@ 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
591
|
'SMS' => 'sms',
|
@@ -562,7 +593,9 @@ module Aws
|
|
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',
|
@@ -579,6 +612,7 @@ module Aws
|
|
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',
|
@@ -590,6 +624,7 @@ module Aws
|
|
590
624
|
'SimpleDB' => 'sdb',
|
591
625
|
'SnowDeviceManagement' => 'snow-device-management',
|
592
626
|
'Snowball' => 'snowball',
|
627
|
+
'SocialMessaging' => 'social-messaging',
|
593
628
|
'SsmSap' => 'ssm-sap',
|
594
629
|
'States' => 'states',
|
595
630
|
'StorageGateway' => 'storagegateway',
|
@@ -597,7 +632,9 @@ module Aws
|
|
597
632
|
'Support' => 'support',
|
598
633
|
'SupportApp' => 'supportapp',
|
599
634
|
'Synthetics' => 'synthetics',
|
635
|
+
'TaxSettings' => 'tax',
|
600
636
|
'Textract' => 'textract',
|
637
|
+
'TimestreamInfluxDB' => 'timestream-influxdb',
|
601
638
|
'TimestreamQuery' => 'query.timestream',
|
602
639
|
'TimestreamWrite' => 'ingest.timestream',
|
603
640
|
'Tnb' => 'tnb',
|
@@ -614,12 +651,12 @@ module Aws
|
|
614
651
|
'WAFV2' => 'wafv2',
|
615
652
|
'WellArchitected' => 'wellarchitected',
|
616
653
|
'WorkDocs' => 'workdocs',
|
617
|
-
'WorkLink' => 'worklink',
|
618
654
|
'WorkMail' => 'workmail',
|
619
655
|
'WorkMailMessageFlow' => 'workmailmessageflow',
|
620
656
|
'WorkSpaces' => 'workspaces',
|
621
657
|
'WorkSpacesThinClient' => 'thinclient',
|
622
658
|
'WorkSpacesWeb' => 'workspaces-web',
|
659
|
+
'WorkspacesInstances' => 'workspaces-instances',
|
623
660
|
'XRay' => 'xray',
|
624
661
|
}
|
625
662
|
# 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,6 +47,12 @@
|
|
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-7" : {
|
54
|
+
"description" : "Asia Pacific (Thailand)"
|
55
|
+
},
|
47
56
|
"aws-global" : {
|
48
57
|
"description" : "AWS Standard global region"
|
49
58
|
},
|
@@ -86,6 +95,9 @@
|
|
86
95
|
"me-south-1" : {
|
87
96
|
"description" : "Middle East (Bahrain)"
|
88
97
|
},
|
98
|
+
"mx-central-1" : {
|
99
|
+
"description" : "Mexico (Central)"
|
100
|
+
},
|
89
101
|
"sa-east-1" : {
|
90
102
|
"description" : "South America (Sao Paulo)"
|
91
103
|
},
|
@@ -198,7 +210,14 @@
|
|
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 ISOE (Europe) 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" : {
|
@@ -210,7 +229,33 @@
|
|
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 ISOF 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-eusc",
|
245
|
+
"outputs" : {
|
246
|
+
"dnsSuffix" : "amazonaws.eu",
|
247
|
+
"dualStackDnsSuffix" : "amazonaws.eu",
|
248
|
+
"implicitGlobalRegion" : "eusc-de-east-1",
|
249
|
+
"name" : "aws-eusc",
|
250
|
+
"supportsDualStack" : false,
|
251
|
+
"supportsFIPS" : true
|
252
|
+
},
|
253
|
+
"regionRegex" : "^eusc\\-(de)\\-\\w+\\-\\d+$",
|
254
|
+
"regions" : {
|
255
|
+
"eusc-de-east-1" : {
|
256
|
+
"description" : "EU (Germany)"
|
257
|
+
}
|
258
|
+
}
|
214
259
|
} ],
|
215
260
|
"version" : "1.1"
|
216
261
|
}
|