This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
667 lines (658 loc) · 24.6 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
import scala.util._
ThisBuild / crossScalaVersions := Seq(SharedConfig.scala3Version, SharedConfig.scala213Version, SharedConfig.scala212Version)
ThisBuild / scalaVersion := SharedConfig.scala3Version
ThisBuild / organization := "net.exoego"
ThisBuild / concurrentRestrictions += Tags.limit(
ScalaJSTags.Link,
max = Try(System.getenv("SCALAJS_LINK_MAX").toInt).getOrElse(4)
)
Global / excludeLintKeys += publishArtifact
addCommandAlias("fmt", s";scalafmtSbt;++${SharedConfig.scala213Version};scalafmtAll;++${SharedConfig.scala3Version};scalafmtAll")
lazy val core = (project in file("aws-sdk-v2/core"))
.settings(SharedConfig.settings)
.settings(SharedConfig.publishSetting)
.settings(
name := s"${SharedConfig.libraryName}-core"
)
.enablePlugins(ScalaJSPlugin)
lazy val credentials = (project in file("aws-sdk-v2/credentials"))
.settings(SharedConfig.settings)
.settings(SharedConfig.publishSetting)
.settings(
name := s"${SharedConfig.libraryName}-credentials"
)
.enablePlugins(ScalaJSPlugin)
.dependsOn(awsSTS, awsCognitoIdentity)
def defineAwsProject(service: String): Project = {
val lowerServiceName = service.toLowerCase
Project(id = s"aws$service", base = file("aws-sdk-v2/services") / lowerServiceName)
.dependsOn(core)
.settings(SharedConfig.settings)
.settings(SharedConfig.publishSetting)
.settings(
name := s"${SharedConfig.libraryName}-$lowerServiceName"
)
.enablePlugins(ScalaJSPlugin)
}
lazy val root = (project in file("."))
.settings(name := "aws-sdk-scalajs-facade")
.settings(SharedConfig.settings)
.settings(SharedConfig.publishSetting)
.settings(SharedConfig.noPublishingSettings)
.enablePlugins(ScalaJSPlugin)
.aggregate(subProjects.map(_.project): _*)
.aggregate(all)
lazy val all = (project in file("aws-sdk-v2/all"))
.settings(SharedConfig.settings)
.settings(SharedConfig.publishSetting)
.settings(
name := s"${SharedConfig.libraryName}"
)
.enablePlugins(ScalaJSPlugin)
.dependsOn(subProjects.map(p => ClasspathDependency(p, None)): _*)
lazy val awsDynamoDB = defineAwsProject("DynamoDB").settings(SharedConfig.dynamodbSharedSettings)
lazy val awsDynamoDBStreams = defineAwsProject("DynamoDBStreams").settings(SharedConfig.dynamodbSharedSettings)
lazy val awsCloudFrontSigner = defineAwsProject("CloudFrontSigner")
//AUTO-GENERATED
lazy val awsACM = defineAwsProject("ACM")
lazy val awsACMPCA = defineAwsProject("ACMPCA")
lazy val awsAPIGateway = defineAwsProject("APIGateway")
lazy val awsAccessAnalyzer = defineAwsProject("AccessAnalyzer")
lazy val awsAccount = defineAwsProject("Account")
lazy val awsAlexaForBusiness = defineAwsProject("AlexaForBusiness")
lazy val awsAmp = defineAwsProject("Amp")
lazy val awsAmplify = defineAwsProject("Amplify")
lazy val awsAmplifyBackend = defineAwsProject("AmplifyBackend")
lazy val awsAmplifyUIBuilder = defineAwsProject("AmplifyUIBuilder")
lazy val awsApiGatewayManagementApi = defineAwsProject("ApiGatewayManagementApi")
lazy val awsApiGatewayV2 = defineAwsProject("ApiGatewayV2")
lazy val awsAppConfig = defineAwsProject("AppConfig")
lazy val awsAppConfigData = defineAwsProject("AppConfigData")
lazy val awsAppIntegrations = defineAwsProject("AppIntegrations")
lazy val awsAppMesh = defineAwsProject("AppMesh")
lazy val awsAppRunner = defineAwsProject("AppRunner")
lazy val awsAppStream = defineAwsProject("AppStream")
lazy val awsAppSync = defineAwsProject("AppSync")
lazy val awsAppflow = defineAwsProject("Appflow")
lazy val awsApplicationAutoScaling = defineAwsProject("ApplicationAutoScaling")
lazy val awsApplicationCostProfiler = defineAwsProject("ApplicationCostProfiler")
lazy val awsApplicationDiscovery = defineAwsProject("ApplicationDiscovery")
lazy val awsApplicationInsights = defineAwsProject("ApplicationInsights")
lazy val awsAthena = defineAwsProject("Athena")
lazy val awsAuditManager = defineAwsProject("AuditManager")
lazy val awsAugmentedAIRuntime = defineAwsProject("AugmentedAIRuntime")
lazy val awsAutoScaling = defineAwsProject("AutoScaling")
lazy val awsAutoScalingPlans = defineAwsProject("AutoScalingPlans")
lazy val awsBackup = defineAwsProject("Backup")
lazy val awsBackupGateway = defineAwsProject("BackupGateway")
lazy val awsBatch = defineAwsProject("Batch")
lazy val awsBraket = defineAwsProject("Braket")
lazy val awsBudgetsService = defineAwsProject("BudgetsService")
lazy val awsCUR = defineAwsProject("CUR")
lazy val awsChime = defineAwsProject("Chime")
lazy val awsChimeSDKIdentity = defineAwsProject("ChimeSDKIdentity")
lazy val awsChimeSDKMeetings = defineAwsProject("ChimeSDKMeetings")
lazy val awsChimeSDKMessaging = defineAwsProject("ChimeSDKMessaging")
lazy val awsCloud9 = defineAwsProject("Cloud9")
lazy val awsCloudControl = defineAwsProject("CloudControl")
lazy val awsCloudDirectory = defineAwsProject("CloudDirectory")
lazy val awsCloudFormation = defineAwsProject("CloudFormation")
lazy val awsCloudFront = defineAwsProject("CloudFront")
lazy val awsCloudHSM = defineAwsProject("CloudHSM")
lazy val awsCloudHSMV2 = defineAwsProject("CloudHSMV2")
lazy val awsCloudSearch = defineAwsProject("CloudSearch")
lazy val awsCloudSearchDomain = defineAwsProject("CloudSearchDomain")
lazy val awsCloudTrail = defineAwsProject("CloudTrail")
lazy val awsCloudWatch = defineAwsProject("CloudWatch")
lazy val awsCloudWatchEvents = defineAwsProject("CloudWatchEvents")
lazy val awsCloudWatchLogs = defineAwsProject("CloudWatchLogs")
lazy val awsCodeArtifact = defineAwsProject("CodeArtifact")
lazy val awsCodeBuild = defineAwsProject("CodeBuild")
lazy val awsCodeCommit = defineAwsProject("CodeCommit")
lazy val awsCodeDeploy = defineAwsProject("CodeDeploy")
lazy val awsCodeGuruProfiler = defineAwsProject("CodeGuruProfiler")
lazy val awsCodeGuruReviewer = defineAwsProject("CodeGuruReviewer")
lazy val awsCodePipeline = defineAwsProject("CodePipeline")
lazy val awsCodeStar = defineAwsProject("CodeStar")
lazy val awsCodeStarNotifications = defineAwsProject("CodeStarNotifications")
lazy val awsCodeStarconnections = defineAwsProject("CodeStarconnections")
lazy val awsCognitoIdentity = defineAwsProject("CognitoIdentity")
lazy val awsCognitoIdentityProvider = defineAwsProject("CognitoIdentityProvider")
lazy val awsCognitoSync = defineAwsProject("CognitoSync")
lazy val awsComprehend = defineAwsProject("Comprehend")
lazy val awsComprehendMedical = defineAwsProject("ComprehendMedical")
lazy val awsComputeOptimizer = defineAwsProject("ComputeOptimizer")
lazy val awsConfigService = defineAwsProject("ConfigService")
lazy val awsConnect = defineAwsProject("Connect")
lazy val awsConnectContactLens = defineAwsProject("ConnectContactLens")
lazy val awsConnectParticipant = defineAwsProject("ConnectParticipant")
lazy val awsCostExplorer = defineAwsProject("CostExplorer")
lazy val awsCustomerProfiles = defineAwsProject("CustomerProfiles")
lazy val awsDAX = defineAwsProject("DAX")
lazy val awsDLM = defineAwsProject("DLM")
lazy val awsDMS = defineAwsProject("DMS")
lazy val awsDRS = defineAwsProject("DRS")
lazy val awsDataBrew = defineAwsProject("DataBrew")
lazy val awsDataExchange = defineAwsProject("DataExchange")
lazy val awsDataPipeline = defineAwsProject("DataPipeline")
lazy val awsDataSync = defineAwsProject("DataSync")
lazy val awsDetective = defineAwsProject("Detective")
lazy val awsDevOpsGuru = defineAwsProject("DevOpsGuru")
lazy val awsDeviceFarm = defineAwsProject("DeviceFarm")
lazy val awsDirectConnect = defineAwsProject("DirectConnect")
lazy val awsDirectoryService = defineAwsProject("DirectoryService")
lazy val awsDocDB = defineAwsProject("DocDB")
lazy val awsEBS = defineAwsProject("EBS")
lazy val awsEC2 = defineAwsProject("EC2")
lazy val awsEC2InstanceConnect = defineAwsProject("EC2InstanceConnect")
lazy val awsECR = defineAwsProject("ECR")
lazy val awsECRPUBLIC = defineAwsProject("ECRPUBLIC")
lazy val awsECS = defineAwsProject("ECS")
lazy val awsEFS = defineAwsProject("EFS")
lazy val awsEKS = defineAwsProject("EKS")
lazy val awsELB = defineAwsProject("ELB")
lazy val awsELBv2 = defineAwsProject("ELBv2")
lazy val awsEMR = defineAwsProject("EMR")
lazy val awsEMRcontainers = defineAwsProject("EMRcontainers")
lazy val awsES = defineAwsProject("ES")
lazy val awsElastiCache = defineAwsProject("ElastiCache")
lazy val awsElasticBeanstalk = defineAwsProject("ElasticBeanstalk")
lazy val awsElasticInference = defineAwsProject("ElasticInference")
lazy val awsElasticTranscoder = defineAwsProject("ElasticTranscoder")
lazy val awsEventBridge = defineAwsProject("EventBridge")
lazy val awsEvidently = defineAwsProject("Evidently")
lazy val awsFMS = defineAwsProject("FMS")
lazy val awsFSx = defineAwsProject("FSx")
lazy val awsFinSpace = defineAwsProject("FinSpace")
lazy val awsFinSpaceData = defineAwsProject("FinSpaceData")
lazy val awsFirehose = defineAwsProject("Firehose")
lazy val awsFis = defineAwsProject("Fis")
lazy val awsForecast = defineAwsProject("Forecast")
lazy val awsForecastQuery = defineAwsProject("ForecastQuery")
lazy val awsFraudDetector = defineAwsProject("FraudDetector")
lazy val awsGameLift = defineAwsProject("GameLift")
lazy val awsGlacier = defineAwsProject("Glacier")
lazy val awsGlobalAccelerator = defineAwsProject("GlobalAccelerator")
lazy val awsGlue = defineAwsProject("Glue")
lazy val awsGrafana = defineAwsProject("Grafana")
lazy val awsGreengrass = defineAwsProject("Greengrass")
lazy val awsGreengrassV2 = defineAwsProject("GreengrassV2")
lazy val awsGroundStation = defineAwsProject("GroundStation")
lazy val awsGuardDuty = defineAwsProject("GuardDuty")
lazy val awsHealth = defineAwsProject("Health")
lazy val awsHealthLake = defineAwsProject("HealthLake")
lazy val awsHoneycode = defineAwsProject("Honeycode")
lazy val awsIAM = defineAwsProject("IAM")
lazy val awsIVS = defineAwsProject("IVS")
lazy val awsIdentityStore = defineAwsProject("IdentityStore")
lazy val awsImagebuilder = defineAwsProject("Imagebuilder")
lazy val awsImportExport = defineAwsProject("ImportExport")
lazy val awsInspector = defineAwsProject("Inspector")
lazy val awsInspector2 = defineAwsProject("Inspector2")
lazy val awsIoT1ClickDevicesService = defineAwsProject("IoT1ClickDevicesService")
lazy val awsIoT1ClickProjects = defineAwsProject("IoT1ClickProjects")
lazy val awsIoTAnalytics = defineAwsProject("IoTAnalytics")
lazy val awsIoTEvents = defineAwsProject("IoTEvents")
lazy val awsIoTEventsData = defineAwsProject("IoTEventsData")
lazy val awsIoTFleetHub = defineAwsProject("IoTFleetHub")
lazy val awsIoTJobsDataPlane = defineAwsProject("IoTJobsDataPlane")
lazy val awsIoTSecureTunneling = defineAwsProject("IoTSecureTunneling")
lazy val awsIoTSiteWise = defineAwsProject("IoTSiteWise")
lazy val awsIoTThingsGraph = defineAwsProject("IoTThingsGraph")
lazy val awsIoTTwinMaker = defineAwsProject("IoTTwinMaker")
lazy val awsIoTWireless = defineAwsProject("IoTWireless")
lazy val awsIot = defineAwsProject("Iot")
lazy val awsIotData = defineAwsProject("IotData")
lazy val awsIotDeviceAdvisor = defineAwsProject("IotDeviceAdvisor")
lazy val awsKMS = defineAwsProject("KMS")
lazy val awsKafka = defineAwsProject("Kafka")
lazy val awsKafkaConnect = defineAwsProject("KafkaConnect")
lazy val awsKendra = defineAwsProject("Kendra")
lazy val awsKinesis = defineAwsProject("Kinesis")
lazy val awsKinesisAnalytics = defineAwsProject("KinesisAnalytics")
lazy val awsKinesisAnalyticsV2 = defineAwsProject("KinesisAnalyticsV2")
lazy val awsKinesisVideo = defineAwsProject("KinesisVideo")
lazy val awsKinesisVideoArchivedMedia = defineAwsProject("KinesisVideoArchivedMedia")
lazy val awsKinesisVideoMedia = defineAwsProject("KinesisVideoMedia")
lazy val awsKinesisVideoSignaling = defineAwsProject("KinesisVideoSignaling")
lazy val awsLakeFormation = defineAwsProject("LakeFormation")
lazy val awsLambda = defineAwsProject("Lambda")
lazy val awsLexModelBuildingService = defineAwsProject("LexModelBuildingService")
lazy val awsLexModelsV2 = defineAwsProject("LexModelsV2")
lazy val awsLexRuntime = defineAwsProject("LexRuntime")
lazy val awsLexRuntimeV2 = defineAwsProject("LexRuntimeV2")
lazy val awsLicenseManager = defineAwsProject("LicenseManager")
lazy val awsLightsail = defineAwsProject("Lightsail")
lazy val awsLocation = defineAwsProject("Location")
lazy val awsLookoutEquipment = defineAwsProject("LookoutEquipment")
lazy val awsLookoutMetrics = defineAwsProject("LookoutMetrics")
lazy val awsLookoutVision = defineAwsProject("LookoutVision")
lazy val awsMQ = defineAwsProject("MQ")
lazy val awsMTurk = defineAwsProject("MTurk")
lazy val awsMWAA = defineAwsProject("MWAA")
lazy val awsMachineLearning = defineAwsProject("MachineLearning")
lazy val awsMacie = defineAwsProject("Macie")
lazy val awsMacie2 = defineAwsProject("Macie2")
lazy val awsManagedBlockchain = defineAwsProject("ManagedBlockchain")
lazy val awsMarketplaceCatalog = defineAwsProject("MarketplaceCatalog")
lazy val awsMarketplaceCommerceAnalytics = defineAwsProject("MarketplaceCommerceAnalytics")
lazy val awsMarketplaceEntitlementService = defineAwsProject("MarketplaceEntitlementService")
lazy val awsMarketplaceMetering = defineAwsProject("MarketplaceMetering")
lazy val awsMediaConnect = defineAwsProject("MediaConnect")
lazy val awsMediaConvert = defineAwsProject("MediaConvert")
lazy val awsMediaLive = defineAwsProject("MediaLive")
lazy val awsMediaPackage = defineAwsProject("MediaPackage")
lazy val awsMediaPackageVod = defineAwsProject("MediaPackageVod")
lazy val awsMediaStore = defineAwsProject("MediaStore")
lazy val awsMediaStoreData = defineAwsProject("MediaStoreData")
lazy val awsMediaTailor = defineAwsProject("MediaTailor")
lazy val awsMemoryDB = defineAwsProject("MemoryDB")
lazy val awsMgn = defineAwsProject("Mgn")
lazy val awsMigrationHub = defineAwsProject("MigrationHub")
lazy val awsMigrationHubConfig = defineAwsProject("MigrationHubConfig")
lazy val awsMigrationHubRefactorSpaces = defineAwsProject("MigrationHubRefactorSpaces")
lazy val awsMigrationHubStrategy = defineAwsProject("MigrationHubStrategy")
lazy val awsMobile = defineAwsProject("Mobile")
lazy val awsMobileAnalytics = defineAwsProject("MobileAnalytics")
lazy val awsNeptune = defineAwsProject("Neptune")
lazy val awsNetworkFirewall = defineAwsProject("NetworkFirewall")
lazy val awsNetworkManager = defineAwsProject("NetworkManager")
lazy val awsNimble = defineAwsProject("Nimble")
lazy val awsOpenSearch = defineAwsProject("OpenSearch")
lazy val awsOpsWorks = defineAwsProject("OpsWorks")
lazy val awsOpsWorksCM = defineAwsProject("OpsWorksCM")
lazy val awsOrganizations = defineAwsProject("Organizations")
lazy val awsOutposts = defineAwsProject("Outposts")
lazy val awsPI = defineAwsProject("PI")
lazy val awsPanorama = defineAwsProject("Panorama")
lazy val awsPersonalize = defineAwsProject("Personalize")
lazy val awsPersonalizeEvents = defineAwsProject("PersonalizeEvents")
lazy val awsPersonalizeRuntime = defineAwsProject("PersonalizeRuntime")
lazy val awsPinpoint = defineAwsProject("Pinpoint")
lazy val awsPinpointEmail = defineAwsProject("PinpointEmail")
lazy val awsPinpointSMSVoice = defineAwsProject("PinpointSMSVoice")
lazy val awsPolly = defineAwsProject("Polly")
lazy val awsPricing = defineAwsProject("Pricing")
lazy val awsProton = defineAwsProject("Proton")
lazy val awsQLDB = defineAwsProject("QLDB")
lazy val awsQLDBSession = defineAwsProject("QLDBSession")
lazy val awsQuickSight = defineAwsProject("QuickSight")
lazy val awsRAM = defineAwsProject("RAM")
lazy val awsRBin = defineAwsProject("RBin")
lazy val awsRDS = defineAwsProject("RDS")
lazy val awsRDSDataService = defineAwsProject("RDSDataService")
lazy val awsRUM = defineAwsProject("RUM")
lazy val awsRedshift = defineAwsProject("Redshift")
lazy val awsRedshiftData = defineAwsProject("RedshiftData")
lazy val awsRekognition = defineAwsProject("Rekognition")
lazy val awsResilienceHub = defineAwsProject("ResilienceHub")
lazy val awsResourceGroups = defineAwsProject("ResourceGroups")
lazy val awsResourceGroupsTaggingAPI = defineAwsProject("ResourceGroupsTaggingAPI")
lazy val awsRoboMaker = defineAwsProject("RoboMaker")
lazy val awsRoute53 = defineAwsProject("Route53")
lazy val awsRoute53Domains = defineAwsProject("Route53Domains")
lazy val awsRoute53RecoveryCluster = defineAwsProject("Route53RecoveryCluster")
lazy val awsRoute53RecoveryControlConfig = defineAwsProject("Route53RecoveryControlConfig")
lazy val awsRoute53RecoveryReadiness = defineAwsProject("Route53RecoveryReadiness")
lazy val awsRoute53Resolver = defineAwsProject("Route53Resolver")
lazy val awsS3 = defineAwsProject("S3")
lazy val awsS3Control = defineAwsProject("S3Control")
lazy val awsS3Outposts = defineAwsProject("S3Outposts")
lazy val awsSES = defineAwsProject("SES")
lazy val awsSESv2 = defineAwsProject("SESv2")
lazy val awsSMS = defineAwsProject("SMS")
lazy val awsSNS = defineAwsProject("SNS")
lazy val awsSQS = defineAwsProject("SQS")
lazy val awsSSM = defineAwsProject("SSM")
lazy val awsSSMContacts = defineAwsProject("SSMContacts")
lazy val awsSSMIncidents = defineAwsProject("SSMIncidents")
lazy val awsSSO = defineAwsProject("SSO")
lazy val awsSSOAdmin = defineAwsProject("SSOAdmin")
lazy val awsSSOOIDC = defineAwsProject("SSOOIDC")
lazy val awsSTS = defineAwsProject("STS")
lazy val awsSWF = defineAwsProject("SWF")
lazy val awsSageMaker = defineAwsProject("SageMaker")
lazy val awsSageMakerFeatureStoreRuntime = defineAwsProject("SageMakerFeatureStoreRuntime")
lazy val awsSageMakerRuntime = defineAwsProject("SageMakerRuntime")
lazy val awsSagemakerEdge = defineAwsProject("SagemakerEdge")
lazy val awsSavingsPlans = defineAwsProject("SavingsPlans")
lazy val awsSchemas = defineAwsProject("Schemas")
lazy val awsSecretsManager = defineAwsProject("SecretsManager")
lazy val awsSecurityHub = defineAwsProject("SecurityHub")
lazy val awsServerlessApplicationRepository = defineAwsProject("ServerlessApplicationRepository")
lazy val awsServiceCatalog = defineAwsProject("ServiceCatalog")
lazy val awsServiceCatalogAppRegistry = defineAwsProject("ServiceCatalogAppRegistry")
lazy val awsServiceDiscovery = defineAwsProject("ServiceDiscovery")
lazy val awsServiceQuotas = defineAwsProject("ServiceQuotas")
lazy val awsShield = defineAwsProject("Shield")
lazy val awsSigner = defineAwsProject("Signer")
lazy val awsSimpleDB = defineAwsProject("SimpleDB")
lazy val awsSnowDeviceManagement = defineAwsProject("SnowDeviceManagement")
lazy val awsSnowball = defineAwsProject("Snowball")
lazy val awsStepFunctions = defineAwsProject("StepFunctions")
lazy val awsStorageGateway = defineAwsProject("StorageGateway")
lazy val awsSupport = defineAwsProject("Support")
lazy val awsSynthetics = defineAwsProject("Synthetics")
lazy val awsTextract = defineAwsProject("Textract")
lazy val awsTimestreamQuery = defineAwsProject("TimestreamQuery")
lazy val awsTimestreamWrite = defineAwsProject("TimestreamWrite")
lazy val awsTranscribeService = defineAwsProject("TranscribeService")
lazy val awsTransfer = defineAwsProject("Transfer")
lazy val awsTranslate = defineAwsProject("Translate")
lazy val awsVoiceID = defineAwsProject("VoiceID")
lazy val awsWAF = defineAwsProject("WAF")
lazy val awsWAFRegional = defineAwsProject("WAFRegional")
lazy val awsWAFv2 = defineAwsProject("WAFv2")
lazy val awsWellArchitected = defineAwsProject("WellArchitected")
lazy val awsWisdom = defineAwsProject("Wisdom")
lazy val awsWorkDocs = defineAwsProject("WorkDocs")
lazy val awsWorkLink = defineAwsProject("WorkLink")
lazy val awsWorkMail = defineAwsProject("WorkMail")
lazy val awsWorkMailMessageFlow = defineAwsProject("WorkMailMessageFlow")
lazy val awsWorkSpaces = defineAwsProject("WorkSpaces")
lazy val awsWorkSpacesWeb = defineAwsProject("WorkSpacesWeb")
lazy val awsXRay = defineAwsProject("XRay")
lazy val subProjects: Seq[Project] = Seq(
core,
credentials,
awsACM,
awsACMPCA,
awsAPIGateway,
awsAccessAnalyzer,
awsAccount,
awsAlexaForBusiness,
awsAmp,
awsAmplify,
awsAmplifyBackend,
awsAmplifyUIBuilder,
awsApiGatewayManagementApi,
awsApiGatewayV2,
awsAppConfig,
awsAppConfigData,
awsAppIntegrations,
awsAppMesh,
awsAppRunner,
awsAppStream,
awsAppSync,
awsAppflow,
awsApplicationAutoScaling,
awsApplicationCostProfiler,
awsApplicationDiscovery,
awsApplicationInsights,
awsAthena,
awsAuditManager,
awsAugmentedAIRuntime,
awsAutoScaling,
awsAutoScalingPlans,
awsBackup,
awsBackupGateway,
awsBatch,
awsBraket,
awsBudgetsService,
awsCUR,
awsChime,
awsChimeSDKIdentity,
awsChimeSDKMeetings,
awsChimeSDKMessaging,
awsCloud9,
awsCloudControl,
awsCloudDirectory,
awsCloudFormation,
awsCloudFront,
awsCloudHSM,
awsCloudHSMV2,
awsCloudSearch,
awsCloudSearchDomain,
awsCloudTrail,
awsCloudWatch,
awsCloudWatchEvents,
awsCloudWatchLogs,
awsCodeArtifact,
awsCodeBuild,
awsCodeCommit,
awsCodeDeploy,
awsCodeGuruProfiler,
awsCodeGuruReviewer,
awsCodePipeline,
awsCodeStar,
awsCodeStarNotifications,
awsCodeStarconnections,
awsCognitoIdentity,
awsCognitoIdentityProvider,
awsCognitoSync,
awsComprehend,
awsComprehendMedical,
awsComputeOptimizer,
awsConfigService,
awsConnect,
awsConnectContactLens,
awsConnectParticipant,
awsCostExplorer,
awsCustomerProfiles,
awsDAX,
awsDLM,
awsDMS,
awsDRS,
awsDataBrew,
awsDataExchange,
awsDataPipeline,
awsDataSync,
awsDetective,
awsDevOpsGuru,
awsDeviceFarm,
awsDirectConnect,
awsDirectoryService,
awsDocDB,
awsDynamoDB,
awsDynamoDBStreams,
awsEBS,
awsEC2,
awsEC2InstanceConnect,
awsECR,
awsECRPUBLIC,
awsECS,
awsEFS,
awsEKS,
awsELB,
awsELBv2,
awsEMR,
awsEMRcontainers,
awsES,
awsElastiCache,
awsElasticBeanstalk,
awsElasticInference,
awsElasticTranscoder,
awsEventBridge,
awsEvidently,
awsFMS,
awsFSx,
awsFinSpace,
awsFinSpaceData,
awsFirehose,
awsFis,
awsForecast,
awsForecastQuery,
awsFraudDetector,
awsGameLift,
awsGlacier,
awsGlobalAccelerator,
awsGlue,
awsGrafana,
awsGreengrass,
awsGreengrassV2,
awsGroundStation,
awsGuardDuty,
awsHealth,
awsHealthLake,
awsHoneycode,
awsIAM,
awsIVS,
awsIdentityStore,
awsImagebuilder,
awsImportExport,
awsInspector,
awsInspector2,
awsIoT1ClickDevicesService,
awsIoT1ClickProjects,
awsIoTAnalytics,
awsIoTEvents,
awsIoTEventsData,
awsIoTFleetHub,
awsIoTJobsDataPlane,
awsIoTSecureTunneling,
awsIoTSiteWise,
awsIoTThingsGraph,
awsIoTTwinMaker,
awsIoTWireless,
awsIot,
awsIotData,
awsIotDeviceAdvisor,
awsKMS,
awsKafka,
awsKafkaConnect,
awsKendra,
awsKinesis,
awsKinesisAnalytics,
awsKinesisAnalyticsV2,
awsKinesisVideo,
awsKinesisVideoArchivedMedia,
awsKinesisVideoMedia,
awsKinesisVideoSignaling,
awsLakeFormation,
awsLambda,
awsLexModelBuildingService,
awsLexModelsV2,
awsLexRuntime,
awsLexRuntimeV2,
awsLicenseManager,
awsLightsail,
awsLocation,
awsLookoutEquipment,
awsLookoutMetrics,
awsLookoutVision,
awsMQ,
awsMTurk,
awsMWAA,
awsMachineLearning,
awsMacie,
awsMacie2,
awsManagedBlockchain,
awsMarketplaceCatalog,
awsMarketplaceCommerceAnalytics,
awsMarketplaceEntitlementService,
awsMarketplaceMetering,
awsMediaConnect,
awsMediaConvert,
awsMediaLive,
awsMediaPackage,
awsMediaPackageVod,
awsMediaStore,
awsMediaStoreData,
awsMediaTailor,
awsMemoryDB,
awsMgn,
awsMigrationHub,
awsMigrationHubConfig,
awsMigrationHubRefactorSpaces,
awsMigrationHubStrategy,
awsMobile,
awsMobileAnalytics,
awsNeptune,
awsNetworkFirewall,
awsNetworkManager,
awsNimble,
awsOpenSearch,
awsOpsWorks,
awsOpsWorksCM,
awsOrganizations,
awsOutposts,
awsPI,
awsPanorama,
awsPersonalize,
awsPersonalizeEvents,
awsPersonalizeRuntime,
awsPinpoint,
awsPinpointEmail,
awsPinpointSMSVoice,
awsPolly,
awsPricing,
awsProton,
awsQLDB,
awsQLDBSession,
awsQuickSight,
awsRAM,
awsRBin,
awsRDS,
awsRDSDataService,
awsRUM,
awsRedshift,
awsRedshiftData,
awsRekognition,
awsResilienceHub,
awsResourceGroups,
awsResourceGroupsTaggingAPI,
awsRoboMaker,
awsRoute53,
awsRoute53Domains,
awsRoute53RecoveryCluster,
awsRoute53RecoveryControlConfig,
awsRoute53RecoveryReadiness,
awsRoute53Resolver,
awsS3,
awsS3Control,
awsS3Outposts,
awsSES,
awsSESv2,
awsSMS,
awsSNS,
awsSQS,
awsSSM,
awsSSMContacts,
awsSSMIncidents,
awsSSO,
awsSSOAdmin,
awsSSOOIDC,
awsSTS,
awsSWF,
awsSageMaker,
awsSageMakerFeatureStoreRuntime,
awsSageMakerRuntime,
awsSagemakerEdge,
awsSavingsPlans,
awsSchemas,
awsSecretsManager,
awsSecurityHub,
awsServerlessApplicationRepository,
awsServiceCatalog,
awsServiceCatalogAppRegistry,
awsServiceDiscovery,
awsServiceQuotas,
awsShield,
awsSigner,
awsSimpleDB,
awsSnowDeviceManagement,
awsSnowball,
awsStepFunctions,
awsStorageGateway,
awsSupport,
awsSynthetics,
awsTextract,
awsTimestreamQuery,
awsTimestreamWrite,
awsTranscribeService,
awsTransfer,
awsTranslate,
awsVoiceID,
awsWAF,
awsWAFRegional,
awsWAFv2,
awsWellArchitected,
awsWisdom,
awsWorkDocs,
awsWorkLink,
awsWorkMail,
awsWorkMailMessageFlow,
awsWorkSpaces,
awsWorkSpacesWeb,
awsXRay
)