-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathaws.lr.versions
More file actions
4110 lines (4109 loc) · 172 KB
/
aws.lr.versions
File metadata and controls
4110 lines (4109 loc) · 172 KB
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
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright (c) Mondoo, Inc.
# SPDX-License-Identifier: BUSL-1.1
aws 11.15.2
aws.account 11.15.2
aws.account.aliases 11.15.2
aws.account.alternateContact 11.15.2
aws.account.alternateContact.accountId 11.15.2
aws.account.alternateContact.contactType 11.15.2
aws.account.alternateContact.emailAddress 11.15.2
aws.account.alternateContact.exists 11.15.2
aws.account.alternateContact.name 11.15.2
aws.account.alternateContact.phoneNumber 11.15.2
aws.account.alternateContact.title 11.15.2
aws.account.alternateContacts 11.15.2
aws.account.billingContact 11.15.2
aws.account.contactInformation 11.15.2
aws.account.id 11.15.2
aws.account.operationsContact 11.15.2
aws.account.organization 11.15.2
aws.account.securityContact 11.15.2
aws.account.tags 11.15.2
aws.acm 11.15.2
aws.acm.certificate 11.15.2
aws.acm.certificate.arn 11.15.2
aws.acm.certificate.certificate 11.15.2
aws.acm.certificate.createdAt 11.15.2
aws.acm.certificate.domainName 11.15.2
aws.acm.certificate.importedAt 11.15.2
aws.acm.certificate.issuedAt 11.15.2
aws.acm.certificate.issuer 11.15.2
aws.acm.certificate.keyAlgorithm 11.15.2
aws.acm.certificate.notAfter 11.15.2
aws.acm.certificate.notBefore 11.15.2
aws.acm.certificate.renewalEligible 11.15.2
aws.acm.certificate.serial 11.15.2
aws.acm.certificate.signatureAlgorithm 11.15.2
aws.acm.certificate.source 11.15.2
aws.acm.certificate.status 11.15.2
aws.acm.certificate.subject 11.15.2
aws.acm.certificate.tags 11.15.2
aws.acm.certificates 11.15.2
aws.apigateway 11.15.2
aws.apigateway.restApis 11.15.2
aws.apigateway.restapi 11.15.2
aws.apigateway.restapi.apiKeySource 11.15.2
aws.apigateway.restapi.arn 11.15.2
aws.apigateway.restapi.binaryMediaTypes 11.15.2
aws.apigateway.restapi.createdDate 11.15.2
aws.apigateway.restapi.description 11.15.2
aws.apigateway.restapi.disableExecuteApiEndpoint 11.15.2
aws.apigateway.restapi.id 11.15.2
aws.apigateway.restapi.minimumCompressionSize 11.15.2
aws.apigateway.restapi.name 11.15.2
aws.apigateway.restapi.policy 11.15.2
aws.apigateway.restapi.region 11.15.2
aws.apigateway.restapi.securityPolicy 11.15.2
aws.apigateway.restapi.stages 11.15.2
aws.apigateway.restapi.tags 11.15.2
aws.apigateway.restapi.version 11.15.2
aws.apigateway.stage 11.15.2
aws.apigateway.stage.arn 11.15.2
aws.apigateway.stage.cacheClusterEnabled 11.15.2
aws.apigateway.stage.cacheClusterSize 11.15.2
aws.apigateway.stage.cacheClusterStatus 11.15.2
aws.apigateway.stage.clientCertificateId 11.15.2
aws.apigateway.stage.createdAt 11.15.2
aws.apigateway.stage.deploymentId 11.15.2
aws.apigateway.stage.description 11.15.2
aws.apigateway.stage.documentationVersion 11.15.2
aws.apigateway.stage.lastUpdatedAt 11.15.2
aws.apigateway.stage.methodSettings 11.15.2
aws.apigateway.stage.name 11.15.2
aws.apigateway.stage.tags 11.15.2
aws.apigateway.stage.tracingEnabled 11.15.2
aws.apigateway.stage.variables 11.15.2
aws.apigateway.stage.webAclArn 11.15.2
aws.applicationAutoscaling 11.15.2
aws.applicationAutoscaling.namespace 11.15.2
aws.applicationAutoscaling.policy 11.15.2
aws.applicationAutoscaling.policy.alarms 11.15.2
aws.applicationAutoscaling.policy.arn 11.15.2
aws.applicationAutoscaling.policy.createdAt 11.15.2
aws.applicationAutoscaling.policy.name 11.15.2
aws.applicationAutoscaling.policy.namespace 11.15.2
aws.applicationAutoscaling.policy.policyType 11.15.2
aws.applicationAutoscaling.policy.predictiveScalingConfig 11.15.2
aws.applicationAutoscaling.policy.resourceId 11.15.2
aws.applicationAutoscaling.policy.scalableDimension 11.15.2
aws.applicationAutoscaling.policy.stepScalingConfig 11.15.2
aws.applicationAutoscaling.policy.targetTrackingConfig 11.15.2
aws.applicationAutoscaling.scalableTargets 11.15.2
aws.applicationAutoscaling.scheduledAction 11.15.2
aws.applicationAutoscaling.scheduledAction.arn 11.15.2
aws.applicationAutoscaling.scheduledAction.createdAt 11.15.2
aws.applicationAutoscaling.scheduledAction.endAt 11.15.2
aws.applicationAutoscaling.scheduledAction.name 11.15.2
aws.applicationAutoscaling.scheduledAction.namespace 11.15.2
aws.applicationAutoscaling.scheduledAction.resourceId 11.15.2
aws.applicationAutoscaling.scheduledAction.scalableDimension 11.15.2
aws.applicationAutoscaling.scheduledAction.scalableTargetAction 11.15.2
aws.applicationAutoscaling.scheduledAction.schedule 11.15.2
aws.applicationAutoscaling.scheduledAction.startAt 11.15.2
aws.applicationAutoscaling.scheduledAction.timezone 11.15.2
aws.applicationAutoscaling.target 11.15.2
aws.applicationAutoscaling.target.arn 11.15.2
aws.applicationAutoscaling.target.createdAt 11.15.2
aws.applicationAutoscaling.target.maxCapacity 11.15.2
aws.applicationAutoscaling.target.minCapacity 11.15.2
aws.applicationAutoscaling.target.namespace 11.15.2
aws.applicationAutoscaling.target.policies 11.15.2
aws.applicationAutoscaling.target.region 11.15.2
aws.applicationAutoscaling.target.resourceId 11.15.2
aws.applicationAutoscaling.target.scalableDimension 11.15.2
aws.applicationAutoscaling.target.scheduledActions 11.15.2
aws.applicationAutoscaling.target.suspendedState 11.15.2
aws.appstream 11.15.6
aws.appstream.fleet 11.15.6
aws.appstream.fleet.arn 11.15.6
aws.appstream.fleet.createdAt 11.15.6
aws.appstream.fleet.disconnectTimeoutInSeconds 11.15.6
aws.appstream.fleet.domainJoinInfo 11.15.6
aws.appstream.fleet.enableDefaultInternetAccess 11.15.6
aws.appstream.fleet.fleetType 11.15.6
aws.appstream.fleet.iamRoleArn 11.15.6
aws.appstream.fleet.idleDisconnectTimeoutInSeconds 11.15.6
aws.appstream.fleet.imageArn 11.15.6
aws.appstream.fleet.imageName 11.15.6
aws.appstream.fleet.instanceType 11.15.6
aws.appstream.fleet.maxConcurrentSessions 11.15.6
aws.appstream.fleet.maxSessionsPerInstance 11.15.6
aws.appstream.fleet.maxUserDurationInSeconds 11.15.6
aws.appstream.fleet.name 11.15.6
aws.appstream.fleet.platform 11.15.6
aws.appstream.fleet.region 11.15.6
aws.appstream.fleet.state 11.15.6
aws.appstream.fleet.tags 11.15.6
aws.appstream.fleet.vpcConfig 11.15.6
aws.appstream.fleets 11.15.6
aws.appstream.imageBuilder 11.15.6
aws.appstream.imageBuilder.appstreamAgentVersion 11.15.6
aws.appstream.imageBuilder.arn 11.15.6
aws.appstream.imageBuilder.createdAt 11.15.6
aws.appstream.imageBuilder.description 11.15.6
aws.appstream.imageBuilder.domainJoinInfo 11.15.6
aws.appstream.imageBuilder.enableDefaultInternetAccess 11.15.6
aws.appstream.imageBuilder.iamRoleArn 11.15.6
aws.appstream.imageBuilder.imageArn 11.15.6
aws.appstream.imageBuilder.instanceType 11.15.6
aws.appstream.imageBuilder.name 11.15.6
aws.appstream.imageBuilder.networkAccessConfiguration 11.15.6
aws.appstream.imageBuilder.platform 11.15.6
aws.appstream.imageBuilder.region 11.15.6
aws.appstream.imageBuilder.state 11.15.6
aws.appstream.imageBuilder.tags 11.15.6
aws.appstream.imageBuilder.vpcConfig 11.15.6
aws.appstream.imageBuilders 11.15.6
aws.appstream.stack 11.15.6
aws.appstream.stack.accessEndpoints 11.15.6
aws.appstream.stack.applicationSettings 11.15.6
aws.appstream.stack.arn 11.15.6
aws.appstream.stack.createdAt 11.15.6
aws.appstream.stack.description 11.15.6
aws.appstream.stack.embedHostDomains 11.15.6
aws.appstream.stack.name 11.15.6
aws.appstream.stack.region 11.15.6
aws.appstream.stack.storageConnectors 11.15.6
aws.appstream.stack.tags 11.15.6
aws.appstream.stack.userSettings 11.15.6
aws.appstream.stacks 11.15.6
aws.athena 11.16.1
aws.athena.dataCatalog 11.16.1
aws.athena.dataCatalog.connectionType 11.16.1
aws.athena.dataCatalog.description 11.16.1
aws.athena.dataCatalog.error 11.16.1
aws.athena.dataCatalog.name 11.16.1
aws.athena.dataCatalog.parameters 11.16.1
aws.athena.dataCatalog.region 11.16.1
aws.athena.dataCatalog.status 11.16.1
aws.athena.dataCatalog.type 11.16.1
aws.athena.dataCatalogs 11.16.1
aws.athena.namedQueries 11.16.1
aws.athena.namedQuery 11.16.1
aws.athena.namedQuery.database 11.16.1
aws.athena.namedQuery.description 11.16.1
aws.athena.namedQuery.id 11.16.1
aws.athena.namedQuery.name 11.16.1
aws.athena.namedQuery.queryString 11.16.1
aws.athena.namedQuery.region 11.16.1
aws.athena.namedQuery.workGroup 11.16.1
aws.athena.workgroup 11.16.1
aws.athena.workgroup.arn 11.16.1
aws.athena.workgroup.bytesScannedCutoffPerQuery 11.16.1
aws.athena.workgroup.createdAt 11.16.1
aws.athena.workgroup.description 11.16.1
aws.athena.workgroup.enforceWorkGroupConfiguration 11.16.1
aws.athena.workgroup.engineVersion 11.16.1
aws.athena.workgroup.name 11.16.1
aws.athena.workgroup.publishCloudWatchMetricsEnabled 11.16.1
aws.athena.workgroup.region 11.16.1
aws.athena.workgroup.requesterPaysEnabled 11.16.1
aws.athena.workgroup.resultConfiguration 11.16.1
aws.athena.workgroup.state 11.16.1
aws.athena.workgroup.tags 11.16.1
aws.athena.workgroups 11.16.1
aws.autoscaling 11.15.2
aws.autoscaling.group 11.15.2
aws.autoscaling.group.arn 11.15.2
aws.autoscaling.group.availabilityZones 11.15.2
aws.autoscaling.group.capacityRebalance 11.15.2
aws.autoscaling.group.createdAt 11.15.2
aws.autoscaling.group.defaultCooldown 11.15.2
aws.autoscaling.group.defaultInstanceWarmup 11.15.2
aws.autoscaling.group.desiredCapacity 11.15.2
aws.autoscaling.group.desiredCapacityType 11.15.2
aws.autoscaling.group.healthCheckGracePeriod 11.15.2
aws.autoscaling.group.healthCheckType 11.15.2
aws.autoscaling.group.instances 11.15.2
aws.autoscaling.group.launchConfigurationName 11.15.2
aws.autoscaling.group.loadBalancerNames 11.15.2
aws.autoscaling.group.maxInstanceLifetime 11.15.2
aws.autoscaling.group.maxSize 11.15.2
aws.autoscaling.group.minSize 11.15.2
aws.autoscaling.group.name 11.15.2
aws.autoscaling.group.newInstancesProtectedFromScaleIn 11.15.2
aws.autoscaling.group.placementGroup 11.15.2
aws.autoscaling.group.predictedCapacity 11.15.2
aws.autoscaling.group.region 11.15.2
aws.autoscaling.group.tag 11.15.2
aws.autoscaling.group.tag.key 11.15.2
aws.autoscaling.group.tag.propagateAtLaunch 11.15.2
aws.autoscaling.group.tag.resourceId 11.15.2
aws.autoscaling.group.tag.resourceType 11.15.2
aws.autoscaling.group.tag.value 11.15.2
aws.autoscaling.group.tagSpecifications 11.15.2
aws.autoscaling.group.tags 11.15.2
aws.autoscaling.group.targetGroups 11.15.2
aws.autoscaling.group.warmPoolSize 11.15.2
aws.autoscaling.groups 11.15.2
aws.backup 11.15.2
aws.backup.lifecycle 11.15.2
aws.backup.lifecycle.deleteAfterDays 11.15.2
aws.backup.lifecycle.id 11.15.2
aws.backup.lifecycle.moveToColdStorageAfterDays 11.15.2
aws.backup.lifecycle.optInToArchiveForSupportedResources 11.15.2
aws.backup.plan 11.15.2
aws.backup.plan.advancedBackupSetting 11.15.2
aws.backup.plan.advancedBackupSetting.backupOptions 11.15.2
aws.backup.plan.advancedBackupSetting.id 11.15.2
aws.backup.plan.advancedBackupSetting.resourceType 11.15.2
aws.backup.plan.advancedBackupSettings 11.15.2
aws.backup.plan.arn 11.15.2
aws.backup.plan.createdAt 11.15.2
aws.backup.plan.deletionDate 11.15.2
aws.backup.plan.id 11.15.2
aws.backup.plan.lastExecutionDate 11.15.2
aws.backup.plan.name 11.15.2
aws.backup.plan.region 11.15.2
aws.backup.plan.rule 11.15.2
aws.backup.plan.rule.completionWindowMinutes 11.15.2
aws.backup.plan.rule.copyAction 11.15.2
aws.backup.plan.rule.copyAction.deleteAfterDays 11.15.2
aws.backup.plan.rule.copyAction.destinationBackupVaultArn 11.15.2
aws.backup.plan.rule.copyAction.id 11.15.2
aws.backup.plan.rule.copyAction.moveToColdStorageAfterDays 11.15.2
aws.backup.plan.rule.copyAction.optInToArchiveForSupportedResources 11.15.2
aws.backup.plan.rule.copyActions 11.15.2
aws.backup.plan.rule.enableContinuousBackup 11.15.2
aws.backup.plan.rule.id 11.15.2
aws.backup.plan.rule.lifecycle 11.15.2
aws.backup.plan.rule.recoveryPointTags 11.15.2
aws.backup.plan.rule.ruleName 11.15.2
aws.backup.plan.rule.scheduleExpression 11.15.2
aws.backup.plan.rule.scheduleExpressionTimezone 11.15.2
aws.backup.plan.rule.startWindowMinutes 11.15.2
aws.backup.plan.rule.targetBackupVaultName 11.15.2
aws.backup.plan.rules 11.15.2
aws.backup.plan.versionId 11.15.2
aws.backup.plans 11.15.2
aws.backup.vault 11.15.2
aws.backup.vault.arn 11.15.2
aws.backup.vault.createdAt 11.15.2
aws.backup.vault.encryptionKeyArn 11.15.2
aws.backup.vault.locked 11.15.2
aws.backup.vault.lockedAt 11.15.2
aws.backup.vault.maxRetentionDays 11.15.2
aws.backup.vault.minRetentionDays 11.15.2
aws.backup.vault.name 11.15.2
aws.backup.vault.recoveryPoints 11.15.2
aws.backup.vault.region 11.15.2
aws.backup.vaultRecoveryPoint 11.15.2
aws.backup.vaultRecoveryPoint.arn 11.15.2
aws.backup.vaultRecoveryPoint.completionDate 11.15.2
aws.backup.vaultRecoveryPoint.createdAt 11.15.2
aws.backup.vaultRecoveryPoint.createdBy 11.15.2
aws.backup.vaultRecoveryPoint.encryptionKeyArn 11.15.2
aws.backup.vaultRecoveryPoint.iamRoleArn 11.15.2
aws.backup.vaultRecoveryPoint.isEncrypted 11.15.2
aws.backup.vaultRecoveryPoint.resourceType 11.15.2
aws.backup.vaultRecoveryPoint.status 11.15.2
aws.backup.vaults 11.15.2
aws.batch 13.1.1
aws.batch.computeEnvironment 13.1.1
aws.batch.computeEnvironment.allocationStrategy 13.1.1
aws.batch.computeEnvironment.arn 13.1.1
aws.batch.computeEnvironment.computeResourceType 13.1.1
aws.batch.computeEnvironment.containerOrchestrationType 13.1.1
aws.batch.computeEnvironment.desiredVcpus 13.1.1
aws.batch.computeEnvironment.ecsCluster 13.1.1
aws.batch.computeEnvironment.iamRole 13.1.1
aws.batch.computeEnvironment.instanceTypes 13.1.1
aws.batch.computeEnvironment.maxVcpus 13.1.1
aws.batch.computeEnvironment.minVcpus 13.1.1
aws.batch.computeEnvironment.name 13.1.1
aws.batch.computeEnvironment.region 13.1.1
aws.batch.computeEnvironment.securityGroups 13.1.1
aws.batch.computeEnvironment.state 13.1.1
aws.batch.computeEnvironment.status 13.1.1
aws.batch.computeEnvironment.statusReason 13.1.1
aws.batch.computeEnvironment.subnets 13.1.1
aws.batch.computeEnvironment.tags 13.1.1
aws.batch.computeEnvironment.type 13.1.1
aws.batch.computeEnvironments 13.1.1
aws.batch.jobDefinition 13.1.1
aws.batch.jobDefinition.arn 13.1.1
aws.batch.jobDefinition.containerProperties 13.1.1
aws.batch.jobDefinition.name 13.1.1
aws.batch.jobDefinition.nodeProperties 13.1.1
aws.batch.jobDefinition.region 13.1.1
aws.batch.jobDefinition.retryStrategy 13.1.1
aws.batch.jobDefinition.revision 13.1.1
aws.batch.jobDefinition.status 13.1.1
aws.batch.jobDefinition.tags 13.1.1
aws.batch.jobDefinition.timeout 13.1.1
aws.batch.jobDefinition.type 13.1.1
aws.batch.jobDefinitions 13.1.1
aws.batch.jobQueue 13.1.1
aws.batch.jobQueue.arn 13.1.1
aws.batch.jobQueue.computeEnvironmentOrder 13.1.1
aws.batch.jobQueue.name 13.1.1
aws.batch.jobQueue.priority 13.1.1
aws.batch.jobQueue.region 13.1.1
aws.batch.jobQueue.state 13.1.1
aws.batch.jobQueue.status 13.1.1
aws.batch.jobQueue.statusReason 13.1.1
aws.batch.jobQueue.tags 13.1.1
aws.batch.jobQueues 13.1.1
aws.cloudformation 13.1.1
aws.cloudformation.stack 13.1.1
aws.cloudformation.stack.capabilities 13.1.1
aws.cloudformation.stack.createdAt 13.1.1
aws.cloudformation.stack.description 13.1.1
aws.cloudformation.stack.driftStatus 13.1.1
aws.cloudformation.stack.enableTerminationProtection 13.1.1
aws.cloudformation.stack.iamRole 13.1.1
aws.cloudformation.stack.name 13.1.1
aws.cloudformation.stack.notificationTopics 13.1.1
aws.cloudformation.stack.outputs 13.1.1
aws.cloudformation.stack.parameters 13.1.1
aws.cloudformation.stack.region 13.1.1
aws.cloudformation.stack.stackId 13.1.1
aws.cloudformation.stack.status 13.1.1
aws.cloudformation.stack.statusReason 13.1.1
aws.cloudformation.stack.tags 13.1.1
aws.cloudformation.stack.updatedAt 13.1.1
aws.cloudformation.stackSet 13.1.1
aws.cloudformation.stackSet.autoDeploymentEnabled 13.1.1
aws.cloudformation.stackSet.description 13.1.1
aws.cloudformation.stackSet.driftStatus 13.1.1
aws.cloudformation.stackSet.name 13.1.1
aws.cloudformation.stackSet.permissionModel 13.1.1
aws.cloudformation.stackSet.region 13.1.1
aws.cloudformation.stackSet.stackSetId 13.1.1
aws.cloudformation.stackSet.status 13.1.1
aws.cloudformation.stackSet.tags 13.1.1
aws.cloudformation.stackSets 13.1.1
aws.cloudformation.stacks 13.1.1
aws.cloudfront 11.15.2
aws.cloudfront.distribution 11.15.2
aws.cloudfront.distribution.arn 11.15.2
aws.cloudfront.distribution.cacheBehaviors 11.15.2
aws.cloudfront.distribution.cnames 11.15.2
aws.cloudfront.distribution.comment 11.15.2
aws.cloudfront.distribution.defaultCacheBehavior 11.15.2
aws.cloudfront.distribution.domainName 11.15.2
aws.cloudfront.distribution.enabled 11.15.2
aws.cloudfront.distribution.geoRestrictionType 11.15.2
aws.cloudfront.distribution.httpVersion 11.15.2
aws.cloudfront.distribution.isIPV6Enabled 11.15.2
aws.cloudfront.distribution.lastModifiedAt 11.15.2
aws.cloudfront.distribution.minimumProtocolVersion 11.15.2
aws.cloudfront.distribution.origin 11.15.2
aws.cloudfront.distribution.origin.account 11.15.2
aws.cloudfront.distribution.origin.connectionAttempts 11.15.2
aws.cloudfront.distribution.origin.connectionTimeout 11.15.2
aws.cloudfront.distribution.origin.domainName 11.15.2
aws.cloudfront.distribution.origin.id 11.15.2
aws.cloudfront.distribution.origin.originPath 11.15.2
aws.cloudfront.distribution.origins 11.15.2
aws.cloudfront.distribution.priceClass 11.15.2
aws.cloudfront.distribution.sslSupportMethod 13.3.1
aws.cloudfront.distribution.status 11.15.2
aws.cloudfront.distribution.viewerProtocolPolicy 11.15.2
aws.cloudfront.distribution.webAclId 11.15.2
aws.cloudfront.distributions 11.15.2
aws.cloudfront.function 11.15.2
aws.cloudfront.function.arn 11.15.2
aws.cloudfront.function.comment 11.15.2
aws.cloudfront.function.createdAt 11.15.2
aws.cloudfront.function.lastModifiedTime 11.15.2
aws.cloudfront.function.name 11.15.2
aws.cloudfront.function.runtime 11.15.2
aws.cloudfront.function.stage 11.15.2
aws.cloudfront.function.status 11.15.2
aws.cloudfront.functions 11.15.2
aws.cloudtrail 11.15.2
aws.cloudtrail.trail 11.15.2
aws.cloudtrail.trail.arn 11.15.2
aws.cloudtrail.trail.cloudWatchLogsLogGroupArn 11.15.2
aws.cloudtrail.trail.cloudWatchLogsRoleArn 11.15.2
aws.cloudtrail.trail.eventSelectors 11.15.2
aws.cloudtrail.trail.hasCustomEventSelectors 11.15.2
aws.cloudtrail.trail.hasInsightSelectors 11.15.2
aws.cloudtrail.trail.includeGlobalServiceEvents 11.15.2
aws.cloudtrail.trail.isLogging 13.2.7
aws.cloudtrail.trail.isMultiRegionTrail 11.15.2
aws.cloudtrail.trail.isOrganizationTrail 11.15.2
aws.cloudtrail.trail.kmsKey 11.15.2
aws.cloudtrail.trail.logFileValidationEnabled 11.15.2
aws.cloudtrail.trail.logGroup 11.15.2
aws.cloudtrail.trail.name 11.15.2
aws.cloudtrail.trail.region 11.15.2
aws.cloudtrail.trail.s3bucket 11.15.2
aws.cloudtrail.trail.snsTopicARN 11.15.2
aws.cloudtrail.trail.status 11.15.2
aws.cloudtrail.trails 11.15.2
aws.cloudwatch 11.15.2
aws.cloudwatch.alarms 11.15.2
aws.cloudwatch.logGroups 11.15.2
aws.cloudwatch.loggroup 11.15.2
aws.cloudwatch.loggroup.arn 11.15.2
aws.cloudwatch.loggroup.dataProtectionStatus 11.15.2
aws.cloudwatch.loggroup.deletionProtectionEnabled 11.15.2
aws.cloudwatch.loggroup.kmsKey 11.15.2
aws.cloudwatch.loggroup.metricsFilters 11.15.2
aws.cloudwatch.loggroup.metricsfilter 11.15.2
aws.cloudwatch.loggroup.metricsfilter.filterName 11.15.2
aws.cloudwatch.loggroup.metricsfilter.filterPattern 11.15.2
aws.cloudwatch.loggroup.metricsfilter.id 11.15.2
aws.cloudwatch.loggroup.metricsfilter.metrics 11.15.2
aws.cloudwatch.loggroup.name 11.15.2
aws.cloudwatch.loggroup.region 11.15.2
aws.cloudwatch.loggroup.retentionInDays 11.15.2
aws.cloudwatch.loggroup.tags 11.15.2
aws.cloudwatch.metric 11.15.2
aws.cloudwatch.metric.alarms 11.15.2
aws.cloudwatch.metric.datapoint 11.15.2
aws.cloudwatch.metric.datapoint.average 11.15.2
aws.cloudwatch.metric.datapoint.id 11.15.2
aws.cloudwatch.metric.datapoint.maximum 11.15.2
aws.cloudwatch.metric.datapoint.minimum 11.15.2
aws.cloudwatch.metric.datapoint.sum 11.15.2
aws.cloudwatch.metric.datapoint.timestamp 11.15.2
aws.cloudwatch.metric.datapoint.unit 11.15.2
aws.cloudwatch.metric.dimensions 11.15.2
aws.cloudwatch.metric.name 11.15.2
aws.cloudwatch.metric.namespace 11.15.2
aws.cloudwatch.metric.region 11.15.2
aws.cloudwatch.metric.statistics 11.15.2
aws.cloudwatch.metricdimension 11.15.2
aws.cloudwatch.metricdimension.name 11.15.2
aws.cloudwatch.metricdimension.value 11.15.2
aws.cloudwatch.metrics 11.15.2
aws.cloudwatch.metricsalarm 11.15.2
aws.cloudwatch.metricsalarm.actions 11.15.2
aws.cloudwatch.metricsalarm.actionsEnabled 11.15.2
aws.cloudwatch.metricsalarm.arn 11.15.2
aws.cloudwatch.metricsalarm.insufficientDataActions 11.15.2
aws.cloudwatch.metricsalarm.metricName 11.15.2
aws.cloudwatch.metricsalarm.metricNamespace 11.15.2
aws.cloudwatch.metricsalarm.name 11.15.2
aws.cloudwatch.metricsalarm.okActions 11.15.2
aws.cloudwatch.metricsalarm.region 11.15.2
aws.cloudwatch.metricsalarm.state 11.15.2
aws.cloudwatch.metricsalarm.stateReason 11.15.2
aws.cloudwatch.metricstatistics 11.15.2
aws.cloudwatch.metricstatistics.datapoints 11.15.2
aws.cloudwatch.metricstatistics.label 11.15.2
aws.cloudwatch.metricstatistics.name 11.15.2
aws.cloudwatch.metricstatistics.namespace 11.15.2
aws.cloudwatch.metricstatistics.region 11.15.2
aws.codebuild 11.15.2
aws.codebuild.project 11.15.2
aws.codebuild.project.arn 11.15.2
aws.codebuild.project.createdAt 11.15.2
aws.codebuild.project.description 11.15.2
aws.codebuild.project.encryptionKey 11.15.2
aws.codebuild.project.environment 11.15.2
aws.codebuild.project.modifiedAt 11.15.2
aws.codebuild.project.name 11.15.2
aws.codebuild.project.privilegedMode 11.15.2
aws.codebuild.project.projectVisibility 11.15.2
aws.codebuild.project.queuedTimeoutInMinutes 11.15.2
aws.codebuild.project.region 11.15.2
aws.codebuild.project.serviceRole 11.15.2
aws.codebuild.project.source 11.15.2
aws.codebuild.project.tags 11.15.2
aws.codebuild.project.timeoutInMinutes 11.15.2
aws.codebuild.projects 11.15.2
aws.codedeploy 11.15.2
aws.codedeploy.application 11.15.2
aws.codedeploy.application.applicationId 11.15.2
aws.codedeploy.application.applicationName 11.15.2
aws.codedeploy.application.arn 11.15.2
aws.codedeploy.application.computePlatform 11.15.2
aws.codedeploy.application.createdAt 11.15.2
aws.codedeploy.application.deploymentGroups 11.15.2
aws.codedeploy.application.deployments 11.15.2
aws.codedeploy.application.linkedToGitHub 11.15.2
aws.codedeploy.application.region 11.15.2
aws.codedeploy.application.tags 11.15.2
aws.codedeploy.applications 11.15.2
aws.codedeploy.deployment 11.15.2
aws.codedeploy.deployment.applicationName 11.15.2
aws.codedeploy.deployment.arn 11.15.2
aws.codedeploy.deployment.compleatedAt 11.15.2
aws.codedeploy.deployment.completedAt 11.16.1
aws.codedeploy.deployment.createdAt 11.15.2
aws.codedeploy.deployment.creator 11.15.2
aws.codedeploy.deployment.deploymentConfigName 11.15.2
aws.codedeploy.deployment.deploymentGroupName 11.15.2
aws.codedeploy.deployment.deploymentId 11.15.2
aws.codedeploy.deployment.deploymentOverview 11.15.2
aws.codedeploy.deployment.description 11.15.2
aws.codedeploy.deployment.errorInformation 11.15.2
aws.codedeploy.deployment.ignoreApplicationStopFailures 11.15.2
aws.codedeploy.deployment.isRollback 11.15.2
aws.codedeploy.deployment.region 11.15.2
aws.codedeploy.deployment.revision 11.15.2
aws.codedeploy.deployment.rollbackInfo 11.15.2
aws.codedeploy.deployment.status 11.15.2
aws.codedeploy.deployment.targetInstances 11.15.2
aws.codedeploy.deploymentGroup 11.15.2
aws.codedeploy.deploymentGroup.applicationName 11.15.2
aws.codedeploy.deploymentGroup.arn 11.15.2
aws.codedeploy.deploymentGroup.autoScalingGroups 11.15.2
aws.codedeploy.deploymentGroup.blueGreenDeploymentConfiguration 11.15.2
aws.codedeploy.deploymentGroup.computePlatform 11.15.2
aws.codedeploy.deploymentGroup.deploymentGroupId 11.15.2
aws.codedeploy.deploymentGroup.deploymentGroupName 11.15.2
aws.codedeploy.deploymentGroup.deploymentStyle 11.15.2
aws.codedeploy.deploymentGroup.deployments 11.15.2
aws.codedeploy.deploymentGroup.ec2TagFilters 11.15.2
aws.codedeploy.deploymentGroup.lastAttemptedDeployment 11.15.2
aws.codedeploy.deploymentGroup.lastSuccessfulDeployment 11.15.2
aws.codedeploy.deploymentGroup.loadBalancerInfo 11.15.2
aws.codedeploy.deploymentGroup.onPremisesInstanceTagFilters 11.15.2
aws.codedeploy.deploymentGroup.region 11.15.2
aws.codedeploy.deploymentGroup.serviceRoleArn 11.15.2
aws.codedeploy.deploymentGroup.tags 11.15.2
aws.codedeploy.deploymentGroup.targetRevision 11.15.2
aws.cognito 11.16.1
aws.cognito.identityPool 11.16.1
aws.cognito.identityPool.allowClassicFlow 11.16.1
aws.cognito.identityPool.allowUnauthenticatedIdentities 11.16.1
aws.cognito.identityPool.developerProviderName 11.16.1
aws.cognito.identityPool.id 11.16.1
aws.cognito.identityPool.name 11.16.1
aws.cognito.identityPool.openIdConnectProviderArns 11.16.1
aws.cognito.identityPool.region 11.16.1
aws.cognito.identityPool.samlProviderArns 11.16.1
aws.cognito.identityPool.supportedLoginProviders 11.16.1
aws.cognito.identityPool.tags 11.16.1
aws.cognito.identityPools 11.16.1
aws.cognito.userPool 11.16.1
aws.cognito.userPool.advancedSecurityMode 11.16.1
aws.cognito.userPool.arn 11.16.1
aws.cognito.userPool.createdAt 11.16.1
aws.cognito.userPool.deletionProtection 11.16.1
aws.cognito.userPool.id 11.16.1
aws.cognito.userPool.mfaConfiguration 11.16.1
aws.cognito.userPool.name 11.16.1
aws.cognito.userPool.passwordPolicy 11.16.1
aws.cognito.userPool.region 11.16.1
aws.cognito.userPool.status 11.16.1
aws.cognito.userPool.tags 11.16.1
aws.cognito.userPool.updatedAt 11.16.1
aws.cognito.userPools 11.16.1
aws.config 11.15.2
aws.config.aggregator 13.5.0
aws.config.aggregator.accountAggregationSource 13.5.0
aws.config.aggregator.accountAggregationSource.accountIds 13.5.0
aws.config.aggregator.accountAggregationSource.allAwsRegions 13.5.0
aws.config.aggregator.accountAggregationSource.awsRegions 13.5.0
aws.config.aggregator.accountAggregationSources 13.5.0
aws.config.aggregator.arn 13.5.0
aws.config.aggregator.createdAt 13.5.0
aws.config.aggregator.lastUpdatedAt 13.5.0
aws.config.aggregator.name 13.5.0
aws.config.aggregator.organizationAggregationSource 13.5.0
aws.config.aggregator.organizationAggregationSource.allAwsRegions 13.5.0
aws.config.aggregator.organizationAggregationSource.awsRegions 13.5.0
aws.config.aggregator.organizationAggregationSource.iamRole 13.5.0
aws.config.aggregator.region 13.5.0
aws.config.aggregators 13.5.0
aws.config.deliveryChannels 11.15.2
aws.config.deliverychannel 11.15.2
aws.config.deliverychannel.name 11.15.2
aws.config.deliverychannel.region 11.15.2
aws.config.deliverychannel.s3BucketName 11.15.2
aws.config.deliverychannel.s3KeyPrefix 11.15.2
aws.config.deliverychannel.snsTopicARN 11.15.2
aws.config.recorder 11.15.2
aws.config.recorder.allSupported 11.15.2
aws.config.recorder.iamRole 13.0.2
aws.config.recorder.includeGlobalResourceTypes 11.15.2
aws.config.recorder.lastStatus 11.15.2
aws.config.recorder.name 11.15.2
aws.config.recorder.recording 11.15.2
aws.config.recorder.region 11.15.2
aws.config.recorder.resourceTypes 11.15.2
aws.config.recorder.roleArn 11.15.2
aws.config.recorders 11.15.2
aws.config.rule 11.15.2
aws.config.rule.arn 11.15.2
aws.config.rule.description 11.15.2
aws.config.rule.id 11.15.2
aws.config.rule.name 11.15.2
aws.config.rule.region 11.15.2
aws.config.rule.source 11.15.2
aws.config.rule.state 11.15.2
aws.config.rules 11.15.2
aws.directoryservice 11.15.6
aws.directoryservice.connectSettings 11.15.6
aws.directoryservice.connectSettings.availabilityZones 11.15.6
aws.directoryservice.connectSettings.connectIps 11.15.6
aws.directoryservice.connectSettings.customerUserName 11.15.6
aws.directoryservice.connectSettings.securityGroupId 11.15.6
aws.directoryservice.connectSettings.subnetIds 11.15.6
aws.directoryservice.connectSettings.vpcId 11.15.6
aws.directoryservice.directories 11.15.6
aws.directoryservice.directory 11.15.6
aws.directoryservice.directory.accessUrl 11.15.6
aws.directoryservice.directory.alias 11.15.6
aws.directoryservice.directory.connectSettings 11.15.6
aws.directoryservice.directory.description 11.15.6
aws.directoryservice.directory.desiredNumberOfDomainControllers 11.15.6
aws.directoryservice.directory.directoryId 11.15.6
aws.directoryservice.directory.dnsIpAddrs 11.15.6
aws.directoryservice.directory.edition 11.15.6
aws.directoryservice.directory.launchTime 11.15.6
aws.directoryservice.directory.name 11.15.6
aws.directoryservice.directory.osVersion 11.15.6
aws.directoryservice.directory.ownerDirectoryDescription 11.15.6
aws.directoryservice.directory.radiusSettings 11.15.6
aws.directoryservice.directory.radiusStatus 11.15.6
aws.directoryservice.directory.region 11.15.6
aws.directoryservice.directory.shareMethod 11.15.6
aws.directoryservice.directory.shareNotes 11.15.6
aws.directoryservice.directory.shareStatus 11.15.6
aws.directoryservice.directory.shortName 11.15.6
aws.directoryservice.directory.size 11.15.6
aws.directoryservice.directory.ssoEnabled 11.15.6
aws.directoryservice.directory.stage 11.15.6
aws.directoryservice.directory.stageLastUpdatedDateTime 11.15.6
aws.directoryservice.directory.stageReason 11.15.6
aws.directoryservice.directory.tags 11.15.6
aws.directoryservice.directory.type 11.15.6
aws.directoryservice.directory.vpcSettings 11.15.6
aws.directoryservice.radiusSettings 11.15.6
aws.directoryservice.radiusSettings.authenticationProtocol 11.15.6
aws.directoryservice.radiusSettings.displayLabel 11.15.6
aws.directoryservice.radiusSettings.radiusPort 11.15.6
aws.directoryservice.radiusSettings.radiusRetries 11.15.6
aws.directoryservice.radiusSettings.radiusServers 11.15.6
aws.directoryservice.radiusSettings.radiusTimeout 11.15.6
aws.directoryservice.radiusSettings.useSameUsername 11.15.6
aws.directoryservice.vpcSettings 11.15.6
aws.directoryservice.vpcSettings.availabilityZones 11.15.6
aws.directoryservice.vpcSettings.securityGroupId 11.15.6
aws.directoryservice.vpcSettings.subnetIds 11.15.6
aws.directoryservice.vpcSettings.vpcId 11.15.6
aws.dms 11.15.2
aws.dms.replicationInstances 11.15.2
aws.documentdb 11.16.1
aws.documentdb.cluster 11.16.1
aws.documentdb.cluster.arn 11.16.1
aws.documentdb.cluster.availabilityZones 11.16.1
aws.documentdb.cluster.backupRetentionPeriod 11.16.1
aws.documentdb.cluster.clusterIdentifier 11.16.1
aws.documentdb.cluster.clusterParameterGroup 11.16.1
aws.documentdb.cluster.clusterResourceId 11.16.1
aws.documentdb.cluster.createdAt 11.16.1
aws.documentdb.cluster.deletionProtection 11.16.1
aws.documentdb.cluster.earliestRestorableTime 11.16.1
aws.documentdb.cluster.enabledCloudwatchLogsExports 11.16.1
aws.documentdb.cluster.endpoint 11.16.1
aws.documentdb.cluster.engine 11.16.1
aws.documentdb.cluster.engineVersion 11.16.1
aws.documentdb.cluster.kmsKey 11.16.1
aws.documentdb.cluster.masterUsername 11.16.1
aws.documentdb.cluster.multiAZ 11.16.1
aws.documentdb.cluster.name 11.16.1
aws.documentdb.cluster.networkType 13.3.1
aws.documentdb.cluster.port 11.16.1
aws.documentdb.cluster.preferredBackupWindow 11.16.1
aws.documentdb.cluster.preferredMaintenanceWindow 11.16.1
aws.documentdb.cluster.region 11.16.1
aws.documentdb.cluster.securityGroups 13.3.1
aws.documentdb.cluster.snapshots 11.16.1
aws.documentdb.cluster.status 11.16.1
aws.documentdb.cluster.storageEncrypted 11.16.1
aws.documentdb.cluster.storageType 11.16.1
aws.documentdb.cluster.subnetGroup 11.16.1
aws.documentdb.cluster.tags 11.16.1
aws.documentdb.clusters 11.16.1
aws.documentdb.instance 11.16.1
aws.documentdb.instance.arn 11.16.1
aws.documentdb.instance.autoMinorVersionUpgrade 11.16.1
aws.documentdb.instance.availabilityZone 11.16.1
aws.documentdb.instance.backupRetentionPeriod 11.16.1
aws.documentdb.instance.certificateAuthority 11.16.1
aws.documentdb.instance.clusterIdentifier 11.16.1
aws.documentdb.instance.createdAt 11.16.1
aws.documentdb.instance.enabledCloudwatchLogsExports 11.16.1
aws.documentdb.instance.endpoint 11.16.1
aws.documentdb.instance.engine 11.16.1
aws.documentdb.instance.engineVersion 11.16.1
aws.documentdb.instance.instanceClass 11.16.1
aws.documentdb.instance.kmsKey 11.16.1
aws.documentdb.instance.name 11.16.1
aws.documentdb.instance.preferredBackupWindow 11.16.1
aws.documentdb.instance.preferredMaintenanceWindow 11.16.1
aws.documentdb.instance.promotionTier 11.16.1
aws.documentdb.instance.region 11.16.1
aws.documentdb.instance.status 11.16.1
aws.documentdb.instance.storageEncrypted 11.16.1
aws.documentdb.instance.tags 11.16.1
aws.documentdb.instances 11.16.1
aws.documentdb.snapshot 11.16.1
aws.documentdb.snapshot.arn 11.16.1
aws.documentdb.snapshot.availabilityZones 11.16.1
aws.documentdb.snapshot.clusterCreatedAt 11.16.1
aws.documentdb.snapshot.clusterIdentifier 11.16.1
aws.documentdb.snapshot.createdAt 11.16.1
aws.documentdb.snapshot.engine 11.16.1
aws.documentdb.snapshot.engineVersion 11.16.1
aws.documentdb.snapshot.id 11.16.1
aws.documentdb.snapshot.kmsKey 11.16.1
aws.documentdb.snapshot.percentProgress 11.16.1
aws.documentdb.snapshot.port 11.16.1
aws.documentdb.snapshot.region 11.16.1
aws.documentdb.snapshot.snapshotType 11.16.1
aws.documentdb.snapshot.status 11.16.1
aws.documentdb.snapshot.storageEncrypted 11.16.1
aws.documentdb.snapshot.storageType 11.16.1
aws.documentdb.snapshot.vpc 11.16.1
aws.documentdb.snapshots 11.16.1
aws.drs 11.15.2
aws.drs.job 11.15.2
aws.drs.job.arn 11.15.2
aws.drs.job.createdAt 11.15.2
aws.drs.job.endedAt 11.15.2
aws.drs.job.initiatedBy 11.15.2
aws.drs.job.jobID 11.15.2
aws.drs.job.participatingServers 11.15.2
aws.drs.job.status 11.15.2
aws.drs.job.type 11.15.2
aws.drs.jobs 11.15.2
aws.drs.launchConfiguration 11.15.2
aws.drs.launchConfiguration.copyPrivateIp 11.15.2
aws.drs.launchConfiguration.copyTags 11.15.2
aws.drs.launchConfiguration.ec2LaunchTemplateID 11.15.2
aws.drs.launchConfiguration.launchDisposition 11.15.2
aws.drs.launchConfiguration.launchIntoInstanceProperties 11.15.2
aws.drs.launchConfiguration.licensing 11.15.2
aws.drs.launchConfiguration.postLaunchEnabled 11.15.2
aws.drs.launchConfiguration.sourceServerID 11.15.2
aws.drs.launchConfiguration.targetInstanceTypeRightSizingMethod 11.15.2
aws.drs.replicationConfiguration 11.15.2
aws.drs.replicationConfiguration.bandwidthThrottling 11.15.2
aws.drs.replicationConfiguration.ebsEncryption 11.15.2
aws.drs.replicationConfiguration.ebsEncryptionKeyArn 11.15.2
aws.drs.replicationConfiguration.replicatedDisks 11.15.2
aws.drs.replicationConfiguration.replicationServerInstanceType 11.15.2
aws.drs.replicationConfiguration.sourceServerID 11.15.2
aws.drs.replicationConfiguration.stagingAreaSubnetId 11.15.2
aws.drs.replicationConfiguration.stagingAreaTags 11.15.2
aws.drs.replicationConfiguration.useDedicatedReplicationServer 11.15.2
aws.drs.sourceServer 11.15.2
aws.drs.sourceServer.arn 11.15.2
aws.drs.sourceServer.dataReplicationInfo 11.15.2
aws.drs.sourceServer.lastLaunchResult 11.15.2
aws.drs.sourceServer.launchConfiguration 11.15.2
aws.drs.sourceServer.lifeCycle 11.15.2
aws.drs.sourceServer.recoveryInstanceId 11.15.2
aws.drs.sourceServer.replicationConfiguration 11.15.2
aws.drs.sourceServer.replicationDirection 11.15.2
aws.drs.sourceServer.sourceProperties 11.15.2
aws.drs.sourceServer.sourceServerID 11.15.2
aws.drs.sourceServer.stagingArea 11.15.2
aws.drs.sourceServer.tags 11.15.2
aws.drs.sourceServers 11.15.2
aws.dynamodb 11.15.2
aws.dynamodb.backups 11.15.2
aws.dynamodb.dax.cluster 13.3.0
aws.dynamodb.dax.cluster.activeNodes 13.3.0
aws.dynamodb.dax.cluster.arn 13.3.0
aws.dynamodb.dax.cluster.clusterEndpointEncryptionType 13.3.0
aws.dynamodb.dax.cluster.clusterName 13.3.0
aws.dynamodb.dax.cluster.description 13.3.0
aws.dynamodb.dax.cluster.nodeType 13.3.0
aws.dynamodb.dax.cluster.region 13.3.0
aws.dynamodb.dax.cluster.sseStatus 13.3.0
aws.dynamodb.dax.cluster.status 13.3.0
aws.dynamodb.dax.cluster.tags 13.3.0
aws.dynamodb.dax.cluster.totalNodes 13.3.0
aws.dynamodb.daxClusters 13.3.0
aws.dynamodb.export 11.15.2
aws.dynamodb.export.arn 11.15.2
aws.dynamodb.export.endTime 11.15.2
aws.dynamodb.export.format 11.15.2
aws.dynamodb.export.itemCount 11.15.2
aws.dynamodb.export.kmsKey 11.15.2
aws.dynamodb.export.s3Bucket 11.15.2
aws.dynamodb.export.s3Prefix 11.15.2
aws.dynamodb.export.s3SseAlgorithm 11.15.2
aws.dynamodb.export.startTime 11.15.2
aws.dynamodb.export.status 11.15.2
aws.dynamodb.export.table 11.15.2
aws.dynamodb.export.type 11.15.2
aws.dynamodb.exports 11.15.2
aws.dynamodb.globalTables 11.15.2
aws.dynamodb.globaltable 11.15.2
aws.dynamodb.globaltable.arn 11.15.2
aws.dynamodb.globaltable.name 11.15.2
aws.dynamodb.globaltable.replicaSettings 11.15.2
aws.dynamodb.limit 11.15.2
aws.dynamodb.limit.accountMaxRead 11.15.2
aws.dynamodb.limit.accountMaxWrite 11.15.2
aws.dynamodb.limit.arn 11.15.2
aws.dynamodb.limit.region 11.15.2
aws.dynamodb.limit.tableMaxRead 11.15.2
aws.dynamodb.limit.tableMaxWrite 11.15.2
aws.dynamodb.limits 11.15.2
aws.dynamodb.table 11.15.2
aws.dynamodb.table.arn 11.15.2
aws.dynamodb.table.backups 11.15.2
aws.dynamodb.table.billingMode 11.16.1
aws.dynamodb.table.continuousBackups 11.15.2
aws.dynamodb.table.createdAt 11.15.2
aws.dynamodb.table.deletionProtectionEnabled 11.15.2
aws.dynamodb.table.globalTableVersion 11.15.2
aws.dynamodb.table.id 11.15.2
aws.dynamodb.table.items 11.15.2
aws.dynamodb.table.latestStreamArn 11.15.2
aws.dynamodb.table.latestStreamLabel 11.15.2
aws.dynamodb.table.name 11.15.2
aws.dynamodb.table.provisionedThroughput 11.15.2
aws.dynamodb.table.region 11.15.2
aws.dynamodb.table.replicaRegions 11.16.1
aws.dynamodb.table.sizeBytes 11.15.2
aws.dynamodb.table.sseDescription 11.15.2
aws.dynamodb.table.sseKmsKey 13.3.1
aws.dynamodb.table.sseType 13.3.1
aws.dynamodb.table.status 11.15.2
aws.dynamodb.table.streamEnabled 11.16.1
aws.dynamodb.table.streamViewType 11.16.1
aws.dynamodb.table.tableClass 11.16.1
aws.dynamodb.table.tags 11.15.2
aws.dynamodb.tables 11.15.2
aws.ec2 11.15.2
aws.ec2.ebsEncryptionByDefault 11.15.2
aws.ec2.eip 11.15.2
aws.ec2.eip.attached 11.15.2
aws.ec2.eip.instance 11.15.2
aws.ec2.eip.networkInterfaceId 11.15.2
aws.ec2.eip.networkInterfaceOwnerId 11.15.2
aws.ec2.eip.privateIpAddress 11.15.2
aws.ec2.eip.publicIp 11.15.2
aws.ec2.eip.publicIpv4Pool 11.15.2
aws.ec2.eip.region 11.15.2
aws.ec2.eip.tags 11.15.2
aws.ec2.eips 11.15.2
aws.ec2.image 11.15.2
aws.ec2.image.architecture 11.15.2
aws.ec2.image.arn 11.15.2
aws.ec2.image.blockDeviceMapping 11.15.2
aws.ec2.image.blockDeviceMapping.deviceName 11.15.2
aws.ec2.image.blockDeviceMapping.ebs 11.15.2
aws.ec2.image.blockDeviceMapping.noDevice 11.15.2
aws.ec2.image.blockDeviceMapping.virtualName 11.15.2
aws.ec2.image.blockDeviceMappings 11.15.2
aws.ec2.image.bootMode 11.15.3
aws.ec2.image.createdAt 11.15.2
aws.ec2.image.deprecatedAt 11.15.2
aws.ec2.image.deregistrationProtection 11.15.3
aws.ec2.image.description 11.15.2
aws.ec2.image.ebsBlockDevice 11.15.2
aws.ec2.image.ebsBlockDevice.deleteOnTermination 11.15.2
aws.ec2.image.ebsBlockDevice.encrypted 11.15.2
aws.ec2.image.ebsBlockDevice.iops 11.15.2
aws.ec2.image.ebsBlockDevice.kmsKey 11.16.1
aws.ec2.image.ebsBlockDevice.kmsKeyId 11.15.2
aws.ec2.image.ebsBlockDevice.snapshotId 11.15.2
aws.ec2.image.ebsBlockDevice.throughput 11.15.2
aws.ec2.image.ebsBlockDevice.volumeSize 11.15.2
aws.ec2.image.ebsBlockDevice.volumeType 11.15.2
aws.ec2.image.enaSupport 11.15.2
aws.ec2.image.freeTierEligible 11.15.3
aws.ec2.image.id 11.15.2
aws.ec2.image.imageAllowed 11.15.3
aws.ec2.image.imageType 11.15.3
aws.ec2.image.imdsSupport 11.15.2
aws.ec2.image.lastLaunchedAt 11.15.3
aws.ec2.image.launchPermission 11.15.2
aws.ec2.image.launchPermission.group 11.15.2
aws.ec2.image.launchPermission.organizationArn 11.15.2
aws.ec2.image.launchPermission.organizationalUnitArn 11.15.2
aws.ec2.image.launchPermission.userId 11.15.2
aws.ec2.image.launchPermissions 11.15.2
aws.ec2.image.name 11.15.2
aws.ec2.image.ownerAlias 11.15.2
aws.ec2.image.ownerId 11.15.2
aws.ec2.image.platformDetails 11.15.3
aws.ec2.image.public 11.15.2
aws.ec2.image.region 11.15.2
aws.ec2.image.rootDeviceName 11.15.3
aws.ec2.image.rootDeviceType 11.15.2
aws.ec2.image.sourceImageId 11.15.3
aws.ec2.image.sourceImageRegion 11.15.3
aws.ec2.image.state 11.15.2
aws.ec2.image.tags 11.15.2
aws.ec2.image.tpmSupport 11.15.2
aws.ec2.image.virtualizationType 11.15.2
aws.ec2.images 11.15.2
aws.ec2.instance 11.15.2
aws.ec2.instance.architecture 11.15.2
aws.ec2.instance.arn 11.15.2
aws.ec2.instance.bootMode 11.15.2
aws.ec2.instance.cpuCoreCount 11.15.3
aws.ec2.instance.cpuThreadsPerCore 11.15.3
aws.ec2.instance.currentInstanceBootMode 11.15.3
aws.ec2.instance.detailedMonitoring 11.15.2
aws.ec2.instance.device 11.15.2
aws.ec2.instance.device.deleteOnTermination 11.15.2
aws.ec2.instance.device.deviceName 11.15.2
aws.ec2.instance.device.status 11.15.2
aws.ec2.instance.device.volumeId 11.15.2
aws.ec2.instance.deviceMappings 11.15.2
aws.ec2.instance.disableApiTermination 11.15.2
aws.ec2.instance.ebsOptimized 11.15.2
aws.ec2.instance.enaSupported 11.15.2
aws.ec2.instance.enclaveEnabled 11.15.2
aws.ec2.instance.hibernationConfigured 11.15.3
aws.ec2.instance.httpEndpoint 11.15.2
aws.ec2.instance.httpPutResponseHopLimit 11.15.2
aws.ec2.instance.httpTokens 11.15.2
aws.ec2.instance.hypervisor 11.15.2
aws.ec2.instance.iamInstanceProfile 11.15.2
aws.ec2.instance.image 11.15.2
aws.ec2.instance.instanceId 11.15.2
aws.ec2.instance.instanceLifecycle 11.15.2
aws.ec2.instance.instanceStatus 11.15.2
aws.ec2.instance.instanceType 11.15.2
aws.ec2.instance.ipv6Address 11.15.2
aws.ec2.instance.keypair 11.15.2
aws.ec2.instance.launchTime 11.15.2
aws.ec2.instance.launchedAt 11.15.2
aws.ec2.instance.maintenanceAutoRecovery 11.15.3
aws.ec2.instance.networkInterfaces 11.15.2
aws.ec2.instance.patchState 11.15.2
aws.ec2.instance.placement 11.15.3
aws.ec2.instance.placement.affinity 11.15.3
aws.ec2.instance.placement.availabilityZone 11.15.3
aws.ec2.instance.placement.availabilityZoneId 11.15.3
aws.ec2.instance.placement.groupId 11.15.3
aws.ec2.instance.placement.groupName 11.15.3
aws.ec2.instance.placement.hostId 11.15.3
aws.ec2.instance.placement.hostResourceGroupArn 11.15.3
aws.ec2.instance.placement.partitionNumber 11.15.3
aws.ec2.instance.placement.tenancy 11.15.3
aws.ec2.instance.platformDetails 11.15.2
aws.ec2.instance.privateDnsName 11.15.2
aws.ec2.instance.privateIp 11.15.2
aws.ec2.instance.publicDnsName 11.15.2
aws.ec2.instance.publicIp 11.15.2
aws.ec2.instance.region 11.15.2
aws.ec2.instance.rootDeviceName 11.15.2
aws.ec2.instance.rootDeviceType 11.15.2
aws.ec2.instance.securityGroups 11.15.2
aws.ec2.instance.sourceDestCheck 11.15.2
aws.ec2.instance.spotInstanceRequestId 11.15.3
aws.ec2.instance.ssm 11.15.2
aws.ec2.instance.state 11.15.2
aws.ec2.instance.stateReason 11.15.2
aws.ec2.instance.stateTransitionReason 11.15.2
aws.ec2.instance.stateTransitionTime 11.15.2
aws.ec2.instance.tags 11.15.2
aws.ec2.instance.tpmSupport 11.15.2