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