aws-partitions 1.329.0 → 1.887.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4726 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-partitions/endpoint_provider.rb +161 -32
- data/lib/aws-partitions/partition.rb +12 -2
- data/lib/aws-partitions/partition_list.rb +52 -0
- data/lib/aws-partitions/region.rb +2 -0
- data/lib/aws-partitions/service.rb +29 -0
- data/lib/aws-partitions.rb +180 -3
- data/partitions-metadata.json +216 -0
- data/partitions.json +22992 -3834
- metadata +14 -11
data/lib/aws-partitions.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require_relative 'aws-partitions/endpoint_provider'
|
2
4
|
require_relative 'aws-partitions/partition'
|
3
5
|
require_relative 'aws-partitions/partition_list'
|
@@ -193,6 +195,12 @@ module Aws
|
|
193
195
|
end
|
194
196
|
end
|
195
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
|
+
|
196
204
|
# @api private For internal use only.
|
197
205
|
def clear
|
198
206
|
default_partition_list.clear
|
@@ -202,7 +210,11 @@ module Aws
|
|
202
210
|
# @return [PartitionList]
|
203
211
|
# @api private
|
204
212
|
def default_partition_list
|
205
|
-
@default_partition_list ||=
|
213
|
+
@default_partition_list ||= begin
|
214
|
+
partitions = PartitionList.build(defaults)
|
215
|
+
partitions.merge_metadata(default_metadata)
|
216
|
+
partitions
|
217
|
+
end
|
206
218
|
end
|
207
219
|
|
208
220
|
# @return [Hash]
|
@@ -210,7 +222,18 @@ module Aws
|
|
210
222
|
def defaults
|
211
223
|
@defaults ||= begin
|
212
224
|
path = File.expand_path('../../partitions.json', __FILE__)
|
213
|
-
JSON.
|
225
|
+
defaults = JSON.parse(File.read(path), freeze: true)
|
226
|
+
defaults.merge('partitions' => defaults['partitions'].dup)
|
227
|
+
end
|
228
|
+
end
|
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)
|
214
237
|
end
|
215
238
|
end
|
216
239
|
|
@@ -224,43 +247,79 @@ module Aws
|
|
224
247
|
'ACM' => 'acm',
|
225
248
|
'ACMPCA' => 'acm-pca',
|
226
249
|
'APIGateway' => 'apigateway',
|
250
|
+
'ARCZonalShift' => 'arc-zonal-shift',
|
227
251
|
'AccessAnalyzer' => 'access-analyzer',
|
252
|
+
'Account' => 'account',
|
228
253
|
'AlexaForBusiness' => 'a4b',
|
229
254
|
'Amplify' => 'amplify',
|
255
|
+
'AmplifyBackend' => 'amplifybackend',
|
256
|
+
'AmplifyUIBuilder' => 'amplifyuibuilder',
|
230
257
|
'ApiGatewayManagementApi' => 'execute-api',
|
231
258
|
'ApiGatewayV2' => 'apigateway',
|
232
259
|
'AppConfig' => 'appconfig',
|
260
|
+
'AppConfigData' => 'appconfigdata',
|
261
|
+
'AppFabric' => 'appfabric',
|
262
|
+
'AppIntegrationsService' => 'app-integrations',
|
233
263
|
'AppMesh' => 'appmesh',
|
264
|
+
'AppRegistry' => 'servicecatalog-appregistry',
|
265
|
+
'AppRunner' => 'apprunner',
|
234
266
|
'AppStream' => 'appstream2',
|
235
267
|
'AppSync' => 'appsync',
|
268
|
+
'Appflow' => 'appflow',
|
236
269
|
'ApplicationAutoScaling' => 'application-autoscaling',
|
270
|
+
'ApplicationCostProfiler' => 'application-cost-profiler',
|
237
271
|
'ApplicationDiscoveryService' => 'discovery',
|
238
272
|
'ApplicationInsights' => 'applicationinsights',
|
239
273
|
'Athena' => 'athena',
|
274
|
+
'AuditManager' => 'auditmanager',
|
240
275
|
'AugmentedAIRuntime' => 'a2i-runtime.sagemaker',
|
241
276
|
'AutoScaling' => 'autoscaling',
|
242
277
|
'AutoScalingPlans' => 'autoscaling-plans',
|
278
|
+
'B2bi' => 'b2bi',
|
279
|
+
'BCMDataExports' => 'bcm-data-exports',
|
243
280
|
'Backup' => 'backup',
|
281
|
+
'BackupGateway' => 'backup-gateway',
|
282
|
+
'BackupStorage' => 'backupstorage',
|
244
283
|
'Batch' => 'batch',
|
284
|
+
'Bedrock' => 'bedrock',
|
285
|
+
'BedrockAgent' => 'bedrock-agent',
|
286
|
+
'BedrockAgentRuntime' => 'bedrock-agent-runtime',
|
287
|
+
'BedrockRuntime' => 'bedrock-runtime',
|
288
|
+
'BillingConductor' => 'billingconductor',
|
289
|
+
'Braket' => 'braket',
|
245
290
|
'Budgets' => 'budgets',
|
246
291
|
'Chime' => 'chime',
|
292
|
+
'ChimeSDKIdentity' => 'identity-chime',
|
293
|
+
'ChimeSDKMediaPipelines' => 'media-pipelines-chime',
|
294
|
+
'ChimeSDKMeetings' => 'meetings-chime',
|
295
|
+
'ChimeSDKMessaging' => 'messaging-chime',
|
296
|
+
'ChimeSDKVoice' => 'voice-chime',
|
297
|
+
'CleanRooms' => 'cleanrooms',
|
298
|
+
'CleanRoomsML' => 'cleanrooms-ml',
|
247
299
|
'Cloud9' => 'cloud9',
|
300
|
+
'CloudControlApi' => 'cloudcontrolapi',
|
248
301
|
'CloudDirectory' => 'clouddirectory',
|
249
302
|
'CloudFormation' => 'cloudformation',
|
250
303
|
'CloudFront' => 'cloudfront',
|
304
|
+
'CloudFrontKeyValueStore' => 'cloudfront-keyvaluestore',
|
251
305
|
'CloudHSM' => 'cloudhsm',
|
252
306
|
'CloudHSMV2' => 'cloudhsmv2',
|
253
307
|
'CloudSearch' => 'cloudsearch',
|
254
308
|
'CloudTrail' => 'cloudtrail',
|
309
|
+
'CloudTrailData' => 'cloudtrail-data',
|
255
310
|
'CloudWatch' => 'monitoring',
|
256
311
|
'CloudWatchEvents' => 'events',
|
312
|
+
'CloudWatchEvidently' => 'evidently',
|
257
313
|
'CloudWatchLogs' => 'logs',
|
314
|
+
'CloudWatchRUM' => 'rum',
|
258
315
|
'CodeArtifact' => 'codeartifact',
|
259
316
|
'CodeBuild' => 'codebuild',
|
317
|
+
'CodeCatalyst' => 'codecatalyst',
|
260
318
|
'CodeCommit' => 'codecommit',
|
261
319
|
'CodeDeploy' => 'codedeploy',
|
262
320
|
'CodeGuruProfiler' => 'codeguru-profiler',
|
263
321
|
'CodeGuruReviewer' => 'codeguru-reviewer',
|
322
|
+
'CodeGuruSecurity' => 'codeguru-security',
|
264
323
|
'CodePipeline' => 'codepipeline',
|
265
324
|
'CodeStar' => 'codestar',
|
266
325
|
'CodeStarNotifications' => 'codestar-notifications',
|
@@ -273,30 +332,45 @@ module Aws
|
|
273
332
|
'ComputeOptimizer' => 'compute-optimizer',
|
274
333
|
'ConfigService' => 'config',
|
275
334
|
'Connect' => 'connect',
|
335
|
+
'ConnectCampaignService' => 'connect-campaigns',
|
336
|
+
'ConnectCases' => 'cases',
|
337
|
+
'ConnectContactLens' => 'contact-lens',
|
276
338
|
'ConnectParticipant' => 'participant.connect',
|
339
|
+
'ConnectWisdomService' => 'wisdom',
|
340
|
+
'ControlTower' => 'controltower',
|
277
341
|
'CostExplorer' => 'ce',
|
342
|
+
'CostOptimizationHub' => 'cost-optimization-hub',
|
278
343
|
'CostandUsageReportService' => 'cur',
|
344
|
+
'CustomerProfiles' => 'profile',
|
279
345
|
'DAX' => 'dax',
|
280
346
|
'DLM' => 'dlm',
|
281
347
|
'DataExchange' => 'dataexchange',
|
282
348
|
'DataPipeline' => 'datapipeline',
|
283
349
|
'DataSync' => 'datasync',
|
350
|
+
'DataZone' => 'datazone',
|
284
351
|
'DatabaseMigrationService' => 'dms',
|
285
352
|
'Detective' => 'api.detective',
|
353
|
+
'DevOpsGuru' => 'devops-guru',
|
286
354
|
'DeviceFarm' => 'devicefarm',
|
287
355
|
'DirectConnect' => 'directconnect',
|
288
356
|
'DirectoryService' => 'ds',
|
289
357
|
'DocDB' => 'rds',
|
358
|
+
'DocDBElastic' => 'docdb-elastic',
|
359
|
+
'Drs' => 'drs',
|
290
360
|
'DynamoDB' => 'dynamodb',
|
291
361
|
'DynamoDBStreams' => 'streams.dynamodb',
|
292
362
|
'EBS' => 'ebs',
|
293
363
|
'EC2' => 'ec2',
|
294
364
|
'EC2InstanceConnect' => 'ec2-instance-connect',
|
295
365
|
'ECR' => 'api.ecr',
|
366
|
+
'ECRPublic' => 'api.ecr-public',
|
296
367
|
'ECS' => 'ecs',
|
297
368
|
'EFS' => 'elasticfilesystem',
|
298
369
|
'EKS' => 'eks',
|
370
|
+
'EKSAuth' => 'eks-auth',
|
299
371
|
'EMR' => 'elasticmapreduce',
|
372
|
+
'EMRContainers' => 'emr-containers',
|
373
|
+
'EMRServerless' => 'emr-serverless',
|
300
374
|
'ElastiCache' => 'elasticache',
|
301
375
|
'ElasticBeanstalk' => 'elasticbeanstalk',
|
302
376
|
'ElasticInference' => 'api.elastic-inference',
|
@@ -304,38 +378,63 @@ module Aws
|
|
304
378
|
'ElasticLoadBalancingV2' => 'elasticloadbalancing',
|
305
379
|
'ElasticTranscoder' => 'elastictranscoder',
|
306
380
|
'ElasticsearchService' => 'es',
|
381
|
+
'EntityResolution' => 'entityresolution',
|
307
382
|
'EventBridge' => 'events',
|
383
|
+
'FIS' => 'fis',
|
308
384
|
'FMS' => 'fms',
|
309
385
|
'FSx' => 'fsx',
|
386
|
+
'FinSpaceData' => 'finspace-api',
|
387
|
+
'Finspace' => 'finspace',
|
310
388
|
'Firehose' => 'firehose',
|
311
389
|
'ForecastQueryService' => 'forecastquery',
|
312
390
|
'ForecastService' => 'forecast',
|
313
391
|
'FraudDetector' => 'frauddetector',
|
392
|
+
'FreeTier' => 'freetier',
|
314
393
|
'GameLift' => 'gamelift',
|
315
394
|
'Glacier' => 'glacier',
|
316
395
|
'GlobalAccelerator' => 'globalaccelerator',
|
317
396
|
'Glue' => 'glue',
|
397
|
+
'GlueDataBrew' => 'databrew',
|
318
398
|
'Greengrass' => 'greengrass',
|
399
|
+
'GreengrassV2' => 'greengrass',
|
319
400
|
'GroundStation' => 'groundstation',
|
320
401
|
'GuardDuty' => 'guardduty',
|
321
402
|
'Health' => 'health',
|
403
|
+
'HealthLake' => 'healthlake',
|
404
|
+
'Honeycode' => 'honeycode',
|
322
405
|
'IAM' => 'iam',
|
406
|
+
'IVS' => 'ivs',
|
407
|
+
'IVSRealTime' => 'ivsrealtime',
|
408
|
+
'IdentityStore' => 'identitystore',
|
323
409
|
'Imagebuilder' => 'imagebuilder',
|
324
410
|
'ImportExport' => 'importexport',
|
325
411
|
'Inspector' => 'inspector',
|
412
|
+
'Inspector2' => 'inspector2',
|
413
|
+
'InspectorScan' => 'inspector-scan',
|
414
|
+
'InternetMonitor' => 'internetmonitor',
|
326
415
|
'IoT' => 'iot',
|
327
416
|
'IoT1ClickDevicesService' => 'devices.iot1click',
|
328
417
|
'IoT1ClickProjects' => 'projects.iot1click',
|
329
418
|
'IoTAnalytics' => 'iotanalytics',
|
419
|
+
'IoTDeviceAdvisor' => 'api.iotdeviceadvisor',
|
330
420
|
'IoTEvents' => 'iotevents',
|
331
421
|
'IoTEventsData' => 'data.iotevents',
|
422
|
+
'IoTFleetHub' => 'api.fleethub.iot',
|
423
|
+
'IoTFleetWise' => 'iotfleetwise',
|
332
424
|
'IoTJobsDataPlane' => 'data.jobs.iot',
|
425
|
+
'IoTRoboRunner' => 'iotroborunner',
|
333
426
|
'IoTSecureTunneling' => 'api.tunneling.iot',
|
334
427
|
'IoTSiteWise' => 'iotsitewise',
|
335
428
|
'IoTThingsGraph' => 'iotthingsgraph',
|
429
|
+
'IoTTwinMaker' => 'iottwinmaker',
|
430
|
+
'IoTWireless' => 'api.iotwireless',
|
431
|
+
'Ivschat' => 'ivschat',
|
336
432
|
'KMS' => 'kms',
|
337
433
|
'Kafka' => 'kafka',
|
434
|
+
'KafkaConnect' => 'kafkaconnect',
|
338
435
|
'Kendra' => 'kendra',
|
436
|
+
'KendraRanking' => 'kendra-ranking',
|
437
|
+
'Keyspaces' => 'cassandra',
|
339
438
|
'Kinesis' => 'kinesis',
|
340
439
|
'KinesisAnalytics' => 'kinesisanalytics',
|
341
440
|
'KinesisAnalyticsV2' => 'kinesisanalytics',
|
@@ -343,106 +442,184 @@ module Aws
|
|
343
442
|
'KinesisVideoArchivedMedia' => 'kinesisvideo',
|
344
443
|
'KinesisVideoMedia' => 'kinesisvideo',
|
345
444
|
'KinesisVideoSignalingChannels' => 'kinesisvideo',
|
445
|
+
'KinesisVideoWebRTCStorage' => 'kinesisvideo',
|
346
446
|
'LakeFormation' => 'lakeformation',
|
347
447
|
'Lambda' => 'lambda',
|
348
448
|
'LambdaPreview' => 'lambda',
|
449
|
+
'LaunchWizard' => 'launchwizard',
|
349
450
|
'Lex' => 'runtime.lex',
|
350
451
|
'LexModelBuildingService' => 'models.lex',
|
452
|
+
'LexModelsV2' => 'models-v2-lex',
|
453
|
+
'LexRuntimeV2' => 'runtime-v2-lex',
|
351
454
|
'LicenseManager' => 'license-manager',
|
455
|
+
'LicenseManagerLinuxSubscriptions' => 'license-manager-linux-subscriptions',
|
456
|
+
'LicenseManagerUserSubscriptions' => 'license-manager-user-subscriptions',
|
352
457
|
'Lightsail' => 'lightsail',
|
458
|
+
'LocationService' => 'geo',
|
459
|
+
'LookoutEquipment' => 'lookoutequipment',
|
460
|
+
'LookoutMetrics' => 'lookoutmetrics',
|
461
|
+
'LookoutforVision' => 'lookoutvision',
|
353
462
|
'MQ' => 'mq',
|
354
463
|
'MTurk' => 'mturk-requester',
|
464
|
+
'MWAA' => 'airflow',
|
355
465
|
'MachineLearning' => 'machinelearning',
|
356
|
-
'Macie' => 'macie',
|
357
466
|
'Macie2' => 'macie2',
|
467
|
+
'MainframeModernization' => 'm2',
|
358
468
|
'ManagedBlockchain' => 'managedblockchain',
|
469
|
+
'ManagedBlockchainQuery' => 'managedblockchain-query',
|
470
|
+
'ManagedGrafana' => 'grafana',
|
471
|
+
'MarketplaceAgreement' => 'agreement-marketplace',
|
359
472
|
'MarketplaceCatalog' => 'catalog.marketplace',
|
360
473
|
'MarketplaceCommerceAnalytics' => 'marketplacecommerceanalytics',
|
474
|
+
'MarketplaceDeployment' => 'deployment-marketplace',
|
361
475
|
'MarketplaceEntitlementService' => 'entitlement.marketplace',
|
362
476
|
'MarketplaceMetering' => 'metering.marketplace',
|
363
477
|
'MediaConnect' => 'mediaconnect',
|
364
478
|
'MediaConvert' => 'mediaconvert',
|
365
479
|
'MediaLive' => 'medialive',
|
366
480
|
'MediaPackage' => 'mediapackage',
|
481
|
+
'MediaPackageV2' => 'mediapackagev2',
|
367
482
|
'MediaPackageVod' => 'mediapackage-vod',
|
368
483
|
'MediaStore' => 'mediastore',
|
369
484
|
'MediaStoreData' => 'data.mediastore',
|
370
485
|
'MediaTailor' => 'api.mediatailor',
|
486
|
+
'MedicalImaging' => 'medical-imaging',
|
487
|
+
'MemoryDB' => 'memory-db',
|
488
|
+
'Mgn' => 'mgn',
|
371
489
|
'MigrationHub' => 'mgh',
|
372
490
|
'MigrationHubConfig' => 'migrationhub-config',
|
491
|
+
'MigrationHubOrchestrator' => 'migrationhub-orchestrator',
|
492
|
+
'MigrationHubRefactorSpaces' => 'refactor-spaces',
|
493
|
+
'MigrationHubStrategyRecommendations' => 'migrationhub-strategy',
|
373
494
|
'Mobile' => 'mobile',
|
374
495
|
'Neptune' => 'rds',
|
496
|
+
'NeptuneGraph' => 'neptune-graph',
|
497
|
+
'Neptunedata' => 'neptune-db',
|
498
|
+
'NetworkFirewall' => 'network-firewall',
|
375
499
|
'NetworkManager' => 'networkmanager',
|
500
|
+
'NetworkMonitor' => 'networkmonitor',
|
501
|
+
'NimbleStudio' => 'nimble',
|
502
|
+
'OAM' => 'oam',
|
503
|
+
'OSIS' => 'osis',
|
504
|
+
'Omics' => 'omics',
|
505
|
+
'OpenSearchServerless' => 'aoss',
|
506
|
+
'OpenSearchService' => 'es',
|
376
507
|
'OpsWorks' => 'opsworks',
|
377
508
|
'OpsWorksCM' => 'opsworks-cm',
|
378
509
|
'Organizations' => 'organizations',
|
379
510
|
'Outposts' => 'outposts',
|
380
511
|
'PI' => 'pi',
|
512
|
+
'Panorama' => 'panorama',
|
513
|
+
'PaymentCryptography' => 'controlplane.payment-cryptography',
|
514
|
+
'PaymentCryptographyData' => 'dataplane.payment-cryptography',
|
515
|
+
'PcaConnectorAd' => 'pca-connector-ad',
|
381
516
|
'Personalize' => 'personalize',
|
382
517
|
'PersonalizeEvents' => 'personalize-events',
|
383
518
|
'PersonalizeRuntime' => 'personalize-runtime',
|
384
519
|
'Pinpoint' => 'pinpoint',
|
385
520
|
'PinpointEmail' => 'email',
|
386
521
|
'PinpointSMSVoice' => 'sms-voice.pinpoint',
|
522
|
+
'PinpointSMSVoiceV2' => 'sms-voice',
|
523
|
+
'Pipes' => 'pipes',
|
387
524
|
'Polly' => 'polly',
|
388
525
|
'Pricing' => 'api.pricing',
|
526
|
+
'PrivateNetworks' => 'private-networks',
|
527
|
+
'PrometheusService' => 'aps',
|
528
|
+
'Proton' => 'proton',
|
529
|
+
'QBusiness' => 'qbusiness',
|
530
|
+
'QConnect' => 'wisdom',
|
389
531
|
'QLDB' => 'qldb',
|
390
532
|
'QLDBSession' => 'session.qldb',
|
391
533
|
'QuickSight' => 'quicksight',
|
392
534
|
'RAM' => 'ram',
|
393
535
|
'RDS' => 'rds',
|
394
536
|
'RDSDataService' => 'rds-data',
|
537
|
+
'RecycleBin' => 'rbin',
|
395
538
|
'Redshift' => 'redshift',
|
539
|
+
'RedshiftDataAPIService' => 'redshift-data',
|
540
|
+
'RedshiftServerless' => 'redshift-serverless',
|
396
541
|
'Rekognition' => 'rekognition',
|
542
|
+
'Repostspace' => 'repostspace',
|
543
|
+
'ResilienceHub' => 'resiliencehub',
|
544
|
+
'ResourceExplorer2' => 'resource-explorer-2',
|
397
545
|
'ResourceGroups' => 'resource-groups',
|
398
546
|
'ResourceGroupsTaggingAPI' => 'tagging',
|
399
547
|
'RoboMaker' => 'robomaker',
|
548
|
+
'RolesAnywhere' => 'rolesanywhere',
|
400
549
|
'Route53' => 'route53',
|
401
550
|
'Route53Domains' => 'route53domains',
|
551
|
+
'Route53RecoveryCluster' => 'route53-recovery-cluster',
|
552
|
+
'Route53RecoveryControlConfig' => 'route53-recovery-control-config',
|
553
|
+
'Route53RecoveryReadiness' => 'route53-recovery-readiness',
|
402
554
|
'Route53Resolver' => 'route53resolver',
|
403
555
|
'S3' => 's3',
|
404
556
|
'S3Control' => 's3-control',
|
557
|
+
'S3Outposts' => 's3-outposts',
|
405
558
|
'SES' => 'email',
|
406
559
|
'SESV2' => 'email',
|
407
560
|
'SMS' => 'sms',
|
408
561
|
'SNS' => 'sns',
|
409
562
|
'SQS' => 'sqs',
|
410
563
|
'SSM' => 'ssm',
|
564
|
+
'SSMContacts' => 'ssm-contacts',
|
565
|
+
'SSMIncidents' => 'ssm-incidents',
|
411
566
|
'SSO' => 'portal.sso',
|
567
|
+
'SSOAdmin' => 'sso',
|
412
568
|
'SSOOIDC' => 'oidc',
|
413
569
|
'STS' => 'sts',
|
414
570
|
'SWF' => 'swf',
|
415
571
|
'SageMaker' => 'api.sagemaker',
|
572
|
+
'SageMakerFeatureStoreRuntime' => 'featurestore-runtime.sagemaker',
|
573
|
+
'SageMakerGeospatial' => 'sagemaker-geospatial',
|
574
|
+
'SageMakerMetrics' => 'metrics.sagemaker',
|
416
575
|
'SageMakerRuntime' => 'runtime.sagemaker',
|
576
|
+
'SagemakerEdgeManager' => 'edge.sagemaker',
|
417
577
|
'SavingsPlans' => 'savingsplans',
|
578
|
+
'Scheduler' => 'scheduler',
|
418
579
|
'Schemas' => 'schemas',
|
419
580
|
'SecretsManager' => 'secretsmanager',
|
420
581
|
'SecurityHub' => 'securityhub',
|
582
|
+
'SecurityLake' => 'securitylake',
|
421
583
|
'ServerlessApplicationRepository' => 'serverlessrepo',
|
422
584
|
'ServiceCatalog' => 'servicecatalog',
|
423
585
|
'ServiceDiscovery' => 'servicediscovery',
|
424
586
|
'ServiceQuotas' => 'servicequotas',
|
425
587
|
'Shield' => 'shield',
|
426
588
|
'Signer' => 'signer',
|
589
|
+
'SimSpaceWeaver' => 'simspaceweaver',
|
427
590
|
'SimpleDB' => 'sdb',
|
591
|
+
'SnowDeviceManagement' => 'snow-device-management',
|
428
592
|
'Snowball' => 'snowball',
|
593
|
+
'SsmSap' => 'ssm-sap',
|
429
594
|
'States' => 'states',
|
430
595
|
'StorageGateway' => 'storagegateway',
|
596
|
+
'SupplyChain' => 'scn',
|
431
597
|
'Support' => 'support',
|
598
|
+
'SupportApp' => 'supportapp',
|
432
599
|
'Synthetics' => 'synthetics',
|
433
600
|
'Textract' => 'textract',
|
601
|
+
'TimestreamQuery' => 'query.timestream',
|
602
|
+
'TimestreamWrite' => 'ingest.timestream',
|
603
|
+
'Tnb' => 'tnb',
|
434
604
|
'TranscribeService' => 'transcribe',
|
435
605
|
'TranscribeStreamingService' => 'transcribestreaming',
|
436
606
|
'Transfer' => 'transfer',
|
437
607
|
'Translate' => 'translate',
|
608
|
+
'TrustedAdvisor' => 'trustedadvisor',
|
609
|
+
'VPCLattice' => 'vpc-lattice',
|
610
|
+
'VerifiedPermissions' => 'verifiedpermissions',
|
611
|
+
'VoiceID' => 'voiceid',
|
438
612
|
'WAF' => 'waf',
|
439
613
|
'WAFRegional' => 'waf-regional',
|
440
614
|
'WAFV2' => 'wafv2',
|
615
|
+
'WellArchitected' => 'wellarchitected',
|
441
616
|
'WorkDocs' => 'workdocs',
|
442
617
|
'WorkLink' => 'worklink',
|
443
618
|
'WorkMail' => 'workmail',
|
444
619
|
'WorkMailMessageFlow' => 'workmailmessageflow',
|
445
620
|
'WorkSpaces' => 'workspaces',
|
621
|
+
'WorkSpacesThinClient' => 'thinclient',
|
622
|
+
'WorkSpacesWeb' => 'workspaces-web',
|
446
623
|
'XRay' => 'xray',
|
447
624
|
}
|
448
625
|
# end service ids
|
@@ -0,0 +1,216 @@
|
|
1
|
+
{
|
2
|
+
"partitions" : [ {
|
3
|
+
"id" : "aws",
|
4
|
+
"outputs" : {
|
5
|
+
"dnsSuffix" : "amazonaws.com",
|
6
|
+
"dualStackDnsSuffix" : "api.aws",
|
7
|
+
"implicitGlobalRegion" : "us-east-1",
|
8
|
+
"name" : "aws",
|
9
|
+
"supportsDualStack" : true,
|
10
|
+
"supportsFIPS" : true
|
11
|
+
},
|
12
|
+
"regionRegex" : "^(us|eu|ap|sa|ca|me|af|il)\\-\\w+\\-\\d+$",
|
13
|
+
"regions" : {
|
14
|
+
"af-south-1" : {
|
15
|
+
"description" : "Africa (Cape Town)"
|
16
|
+
},
|
17
|
+
"ap-east-1" : {
|
18
|
+
"description" : "Asia Pacific (Hong Kong)"
|
19
|
+
},
|
20
|
+
"ap-northeast-1" : {
|
21
|
+
"description" : "Asia Pacific (Tokyo)"
|
22
|
+
},
|
23
|
+
"ap-northeast-2" : {
|
24
|
+
"description" : "Asia Pacific (Seoul)"
|
25
|
+
},
|
26
|
+
"ap-northeast-3" : {
|
27
|
+
"description" : "Asia Pacific (Osaka)"
|
28
|
+
},
|
29
|
+
"ap-south-1" : {
|
30
|
+
"description" : "Asia Pacific (Mumbai)"
|
31
|
+
},
|
32
|
+
"ap-south-2" : {
|
33
|
+
"description" : "Asia Pacific (Hyderabad)"
|
34
|
+
},
|
35
|
+
"ap-southeast-1" : {
|
36
|
+
"description" : "Asia Pacific (Singapore)"
|
37
|
+
},
|
38
|
+
"ap-southeast-2" : {
|
39
|
+
"description" : "Asia Pacific (Sydney)"
|
40
|
+
},
|
41
|
+
"ap-southeast-3" : {
|
42
|
+
"description" : "Asia Pacific (Jakarta)"
|
43
|
+
},
|
44
|
+
"ap-southeast-4" : {
|
45
|
+
"description" : "Asia Pacific (Melbourne)"
|
46
|
+
},
|
47
|
+
"aws-global" : {
|
48
|
+
"description" : "AWS Standard global region"
|
49
|
+
},
|
50
|
+
"ca-central-1" : {
|
51
|
+
"description" : "Canada (Central)"
|
52
|
+
},
|
53
|
+
"ca-west-1" : {
|
54
|
+
"description" : "Canada West (Calgary)"
|
55
|
+
},
|
56
|
+
"eu-central-1" : {
|
57
|
+
"description" : "Europe (Frankfurt)"
|
58
|
+
},
|
59
|
+
"eu-central-2" : {
|
60
|
+
"description" : "Europe (Zurich)"
|
61
|
+
},
|
62
|
+
"eu-north-1" : {
|
63
|
+
"description" : "Europe (Stockholm)"
|
64
|
+
},
|
65
|
+
"eu-south-1" : {
|
66
|
+
"description" : "Europe (Milan)"
|
67
|
+
},
|
68
|
+
"eu-south-2" : {
|
69
|
+
"description" : "Europe (Spain)"
|
70
|
+
},
|
71
|
+
"eu-west-1" : {
|
72
|
+
"description" : "Europe (Ireland)"
|
73
|
+
},
|
74
|
+
"eu-west-2" : {
|
75
|
+
"description" : "Europe (London)"
|
76
|
+
},
|
77
|
+
"eu-west-3" : {
|
78
|
+
"description" : "Europe (Paris)"
|
79
|
+
},
|
80
|
+
"il-central-1" : {
|
81
|
+
"description" : "Israel (Tel Aviv)"
|
82
|
+
},
|
83
|
+
"me-central-1" : {
|
84
|
+
"description" : "Middle East (UAE)"
|
85
|
+
},
|
86
|
+
"me-south-1" : {
|
87
|
+
"description" : "Middle East (Bahrain)"
|
88
|
+
},
|
89
|
+
"sa-east-1" : {
|
90
|
+
"description" : "South America (Sao Paulo)"
|
91
|
+
},
|
92
|
+
"us-east-1" : {
|
93
|
+
"description" : "US East (N. Virginia)"
|
94
|
+
},
|
95
|
+
"us-east-2" : {
|
96
|
+
"description" : "US East (Ohio)"
|
97
|
+
},
|
98
|
+
"us-west-1" : {
|
99
|
+
"description" : "US West (N. California)"
|
100
|
+
},
|
101
|
+
"us-west-2" : {
|
102
|
+
"description" : "US West (Oregon)"
|
103
|
+
}
|
104
|
+
}
|
105
|
+
}, {
|
106
|
+
"id" : "aws-cn",
|
107
|
+
"outputs" : {
|
108
|
+
"dnsSuffix" : "amazonaws.com.cn",
|
109
|
+
"dualStackDnsSuffix" : "api.amazonwebservices.com.cn",
|
110
|
+
"implicitGlobalRegion" : "cn-northwest-1",
|
111
|
+
"name" : "aws-cn",
|
112
|
+
"supportsDualStack" : true,
|
113
|
+
"supportsFIPS" : true
|
114
|
+
},
|
115
|
+
"regionRegex" : "^cn\\-\\w+\\-\\d+$",
|
116
|
+
"regions" : {
|
117
|
+
"aws-cn-global" : {
|
118
|
+
"description" : "AWS China global region"
|
119
|
+
},
|
120
|
+
"cn-north-1" : {
|
121
|
+
"description" : "China (Beijing)"
|
122
|
+
},
|
123
|
+
"cn-northwest-1" : {
|
124
|
+
"description" : "China (Ningxia)"
|
125
|
+
}
|
126
|
+
}
|
127
|
+
}, {
|
128
|
+
"id" : "aws-us-gov",
|
129
|
+
"outputs" : {
|
130
|
+
"dnsSuffix" : "amazonaws.com",
|
131
|
+
"dualStackDnsSuffix" : "api.aws",
|
132
|
+
"implicitGlobalRegion" : "us-gov-west-1",
|
133
|
+
"name" : "aws-us-gov",
|
134
|
+
"supportsDualStack" : true,
|
135
|
+
"supportsFIPS" : true
|
136
|
+
},
|
137
|
+
"regionRegex" : "^us\\-gov\\-\\w+\\-\\d+$",
|
138
|
+
"regions" : {
|
139
|
+
"aws-us-gov-global" : {
|
140
|
+
"description" : "AWS GovCloud (US) global region"
|
141
|
+
},
|
142
|
+
"us-gov-east-1" : {
|
143
|
+
"description" : "AWS GovCloud (US-East)"
|
144
|
+
},
|
145
|
+
"us-gov-west-1" : {
|
146
|
+
"description" : "AWS GovCloud (US-West)"
|
147
|
+
}
|
148
|
+
}
|
149
|
+
}, {
|
150
|
+
"id" : "aws-iso",
|
151
|
+
"outputs" : {
|
152
|
+
"dnsSuffix" : "c2s.ic.gov",
|
153
|
+
"dualStackDnsSuffix" : "c2s.ic.gov",
|
154
|
+
"implicitGlobalRegion" : "us-iso-east-1",
|
155
|
+
"name" : "aws-iso",
|
156
|
+
"supportsDualStack" : false,
|
157
|
+
"supportsFIPS" : true
|
158
|
+
},
|
159
|
+
"regionRegex" : "^us\\-iso\\-\\w+\\-\\d+$",
|
160
|
+
"regions" : {
|
161
|
+
"aws-iso-global" : {
|
162
|
+
"description" : "AWS ISO (US) global region"
|
163
|
+
},
|
164
|
+
"us-iso-east-1" : {
|
165
|
+
"description" : "US ISO East"
|
166
|
+
},
|
167
|
+
"us-iso-west-1" : {
|
168
|
+
"description" : "US ISO WEST"
|
169
|
+
}
|
170
|
+
}
|
171
|
+
}, {
|
172
|
+
"id" : "aws-iso-b",
|
173
|
+
"outputs" : {
|
174
|
+
"dnsSuffix" : "sc2s.sgov.gov",
|
175
|
+
"dualStackDnsSuffix" : "sc2s.sgov.gov",
|
176
|
+
"implicitGlobalRegion" : "us-isob-east-1",
|
177
|
+
"name" : "aws-iso-b",
|
178
|
+
"supportsDualStack" : false,
|
179
|
+
"supportsFIPS" : true
|
180
|
+
},
|
181
|
+
"regionRegex" : "^us\\-isob\\-\\w+\\-\\d+$",
|
182
|
+
"regions" : {
|
183
|
+
"aws-iso-b-global" : {
|
184
|
+
"description" : "AWS ISOB (US) global region"
|
185
|
+
},
|
186
|
+
"us-isob-east-1" : {
|
187
|
+
"description" : "US ISOB East (Ohio)"
|
188
|
+
}
|
189
|
+
}
|
190
|
+
}, {
|
191
|
+
"id" : "aws-iso-e",
|
192
|
+
"outputs" : {
|
193
|
+
"dnsSuffix" : "cloud.adc-e.uk",
|
194
|
+
"dualStackDnsSuffix" : "cloud.adc-e.uk",
|
195
|
+
"implicitGlobalRegion" : "eu-isoe-west-1",
|
196
|
+
"name" : "aws-iso-e",
|
197
|
+
"supportsDualStack" : false,
|
198
|
+
"supportsFIPS" : true
|
199
|
+
},
|
200
|
+
"regionRegex" : "^eu\\-isoe\\-\\w+\\-\\d+$",
|
201
|
+
"regions" : { }
|
202
|
+
}, {
|
203
|
+
"id" : "aws-iso-f",
|
204
|
+
"outputs" : {
|
205
|
+
"dnsSuffix" : "csp.hci.ic.gov",
|
206
|
+
"dualStackDnsSuffix" : "csp.hci.ic.gov",
|
207
|
+
"implicitGlobalRegion" : "us-isof-south-1",
|
208
|
+
"name" : "aws-iso-f",
|
209
|
+
"supportsDualStack" : false,
|
210
|
+
"supportsFIPS" : true
|
211
|
+
},
|
212
|
+
"regionRegex" : "^us\\-isof\\-\\w+\\-\\d+$",
|
213
|
+
"regions" : { }
|
214
|
+
} ],
|
215
|
+
"version" : "1.1"
|
216
|
+
}
|