-
-
Notifications
You must be signed in to change notification settings - Fork 278
/
Copy pathimportable.txt
5100 lines (5099 loc) · 140 KB
/
importable.txt
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
AWS::ACMPCA::Certificate ('Arn', 'CertificateAuthorityArn', '', '')
AWS::ACMPCA::CertificateAuthority ('Arn', '', '', '')
AWS::ACMPCA::CertificateAuthorityActivation ('CertificateAuthorityArn', '', '', '')
AWS::ACMPCA::Permission ('CertificateAuthorityArn', 'Principal', '', '')
AWS::APS::RuleGroupsNamespace ('Arn', '', '', '')
AWS::APS::Workspace ('Arn', '', '', '')
AWS::AccessAnalyzer::Analyzer ('Arn', '', '', '')
AWS::Amplify::App ('Arn', '', '', '')
AWS::Amplify::Branch ('Arn', '', '', '')
AWS::Amplify::Domain ('Arn', '', '', '')
AWS::AmplifyUIBuilder::Component ('AppId', 'EnvironmentName', 'Id', '')
AWS::AmplifyUIBuilder::Form ('AppId', 'EnvironmentName', 'Id', '')
AWS::AmplifyUIBuilder::Theme ('AppId', 'EnvironmentName', 'Id', '')
AWS::ApiGateway::Account ('Id', '', '', '')
AWS::ApiGateway::ApiKey ('APIKeyId', '', '', '')
AWS::ApiGateway::Authorizer ('RestApiId', 'AuthorizerId', '', '')
AWS::ApiGateway::BasePathMapping ('DomainName', 'BasePath', '', '')
AWS::ApiGateway::ClientCertificate ('ClientCertificateId', '', '', '')
AWS::ApiGateway::Deployment ('DeploymentId', 'RestApiId', '', '')
AWS::ApiGateway::DocumentationPart ('DocumentationPartId', 'RestApiId', '', '')
AWS::ApiGateway::DocumentationVersion ('DocumentationVersion', 'RestApiId', '', '')
AWS::ApiGateway::DomainName ('DomainName', '', '', '')
AWS::ApiGateway::Method ('RestApiId', 'ResourceId', 'HttpMethod', '')
AWS::ApiGateway::Model ('RestApiId', 'Name', '', '')
AWS::ApiGateway::RequestValidator ('RestApiId', 'RequestValidatorId', '', '')
AWS::ApiGateway::Resource ('RestApiId', 'ResourceId', '', '')
AWS::ApiGateway::RestApi ('RestApiId', '', '', '')
AWS::ApiGateway::Stage ('RestApiId', 'StageName', '', '')
AWS::ApiGateway::UsagePlan ('Id', '', '', '')
AWS::ApiGateway::UsagePlanKey ('Id', '', '', '')
AWS::ApiGateway::VpcLink ('VpcLinkId', '', '', '')
AWS::ApiGatewayV2::Api ('ApiId', '', '', '')
AWS::ApiGatewayV2::ApiMapping ('ApiMappingId', 'DomainName', '', '')
AWS::ApiGatewayV2::Authorizer ('AuthorizerId', 'ApiId', '', '')
AWS::ApiGatewayV2::Deployment ('ApiId', 'DeploymentId', '', '')
AWS::ApiGatewayV2::DomainName ('DomainName', '', '', '')
AWS::ApiGatewayV2::IntegrationResponse ('ApiId', 'IntegrationId', 'IntegrationResponseId', '')
AWS::ApiGatewayV2::Model ('ApiId', 'ModelId', '', '')
AWS::ApiGatewayV2::Route ('ApiId', 'RouteId', '', '')
AWS::ApiGatewayV2::RouteResponse ('ApiId', 'RouteId', 'RouteResponseId', '')
AWS::ApiGatewayV2::VpcLink ('VpcLinkId', '', '', '')
AWS::AppConfig::Application ('ApplicationId', '', '', '')
AWS::AppConfig::ConfigurationProfile ('ApplicationId', 'ConfigurationProfileId', '', '')
AWS::AppConfig::Extension ('Id', '', '', '')
AWS::AppConfig::ExtensionAssociation ('Id', '', '', '')
AWS::AppFlow::Connector ('ConnectorLabel', '', '', '')
AWS::AppFlow::ConnectorProfile ('ConnectorProfileName', '', '', '')
AWS::AppFlow::Flow ('FlowName', '', '', '')
AWS::AppIntegrations::DataIntegration ('Id', '', '', '')
AWS::AppIntegrations::EventIntegration ('Name', '', '', '')
AWS::AppRunner::AutoScalingConfiguration ('AutoScalingConfigurationArn', '', '', '')
AWS::AppRunner::ObservabilityConfiguration ('ObservabilityConfigurationArn', '', '', '')
AWS::AppRunner::Service ('ServiceArn', '', '', '')
AWS::AppRunner::VpcConnector ('VpcConnectorArn', '', '', '')
AWS::AppRunner::VpcIngressConnection ('VpcIngressConnectionArn', '', '', '')
AWS::AppStream::AppBlock ('Arn', '', '', '')
AWS::AppStream::AppBlockBuilder ('Name', '', '', '')
AWS::AppStream::Application ('Arn', '', '', '')
AWS::AppStream::ApplicationEntitlementAssociation ('StackName', 'EntitlementName', 'ApplicationIdentifier', '')
AWS::AppStream::ApplicationFleetAssociation ('FleetName', 'ApplicationArn', '', '')
AWS::AppStream::DirectoryConfig ('DirectoryName', '', '', '')
AWS::AppStream::Entitlement ('StackName', 'Name', '', '')
AWS::AppStream::ImageBuilder ('Name', '', '', '')
AWS::AppSync::DomainName ('DomainName', '', '', '')
AWS::AppSync::DomainNameApiAssociation ('ApiAssociationIdentifier', '', '', '')
AWS::AppSync::FunctionConfiguration ('FunctionArn', '', '', '')
AWS::AppSync::Resolver ('ResolverArn', '', '', '')
AWS::AppSync::SourceApiAssociation ('AssociationArn', '', '', '')
AWS::ApplicationAutoScaling::ScalableTarget ('ResourceId', 'ScalableDimension', 'ServiceNamespace', '')
AWS::ApplicationAutoScaling::ScalingPolicy ('Arn', 'ScalableDimension', '', '')
AWS::ApplicationInsights::Application ('ApplicationARN', '', '', '')
AWS::Athena::CapacityReservation ('Arn', '', '', '')
AWS::Athena::DataCatalog ('Name', '', '', '')
AWS::Athena::NamedQuery ('NamedQueryId', '', '', '')
AWS::Athena::PreparedStatement ('StatementName', 'WorkGroup', '', '')
AWS::Athena::WorkGroup ('Name', '', '', '')
AWS::AuditManager::Assessment ('AssessmentId', '', '', '')
AWS::AutoScaling::AutoScalingGroup ('AutoScalingGroupName', '', '', '')
AWS::AutoScaling::LaunchConfiguration ('LaunchConfigurationName', '', '', '')
AWS::AutoScaling::LifecycleHook ('AutoScalingGroupName', 'LifecycleHookName', '', '')
AWS::AutoScaling::ScalingPolicy ('Arn', '', '', '')
AWS::AutoScaling::ScheduledAction ('ScheduledActionName', 'AutoScalingGroupName', '', '')
AWS::AutoScaling::WarmPool ('AutoScalingGroupName', '', '', '')
AWS::Backup::BackupPlan ('BackupPlanId', '', '', '')
AWS::Backup::BackupSelection ('Id', '', '', '')
AWS::Backup::BackupVault ('BackupVaultName', '', '', '')
AWS::Backup::Framework ('FrameworkArn', '', '', '')
AWS::Backup::ReportPlan ('ReportPlanArn', '', '', '')
AWS::BackupGateway::Hypervisor ('HypervisorArn', '', '', '')
AWS::Batch::ComputeEnvironment ('ComputeEnvironmentArn', '', '', '')
AWS::Batch::JobQueue ('JobQueueArn', '', '', '')
AWS::Batch::SchedulingPolicy ('Arn', '', '', '')
AWS::BillingConductor::BillingGroup ('Arn', '', '', '')
AWS::BillingConductor::CustomLineItem ('Arn', '', '', '')
AWS::BillingConductor::PricingPlan ('Arn', '', '', '')
AWS::BillingConductor::PricingRule ('Arn', '', '', '')
AWS::Budgets::BudgetsAction ('ActionId', 'BudgetName', '', '')
AWS::CE::AnomalyMonitor ('MonitorArn', '', '', '')
AWS::CE::AnomalySubscription ('SubscriptionArn', '', '', '')
AWS::CE::CostCategory ('Arn', '', '', '')
AWS::CUR::ReportDefinition ('ReportName', '', '', '')
AWS::Cassandra::Keyspace ('KeyspaceName', '', '', '')
AWS::Cassandra::Table ('KeyspaceName', 'TableName', '', '')
AWS::CertificateManager::Account ('AccountId', '', '', '')
AWS::Chatbot::MicrosoftTeamsChannelConfiguration ('Arn', '', '', '')
AWS::Chatbot::SlackChannelConfiguration ('Arn', '', '', '')
AWS::CleanRooms::Collaboration ('CollaborationIdentifier', '', '', '')
AWS::CleanRooms::ConfiguredTable ('ConfiguredTableIdentifier', '', '', '')
AWS::CleanRooms::ConfiguredTableAssociation ('ConfiguredTableAssociationIdentifier', 'MembershipIdentifier', '', '')
AWS::CleanRooms::Membership ('MembershipIdentifier', '', '', '')
AWS::CloudFormation::HookDefaultVersion ('Arn', '', '', '')
AWS::CloudFormation::HookTypeConfig ('ConfigurationArn', '', '', '')
AWS::CloudFormation::HookVersion ('Arn', '', '', '')
AWS::CloudFormation::ModuleDefaultVersion ('Arn', '', '', '')
AWS::CloudFormation::ModuleVersion ('Arn', '', '', '')
AWS::CloudFormation::PublicTypeVersion ('PublicTypeArn', '', '', '')
AWS::CloudFormation::Publisher ('PublisherId', '', '', '')
AWS::CloudFormation::ResourceDefaultVersion ('Arn', '', '', '')
AWS::CloudFormation::ResourceVersion ('Arn', '', '', '')
AWS::CloudFormation::Stack ('StackId', '', '', '')
AWS::CloudFormation::StackSet ('StackSetId', '', '', '')
AWS::CloudFormation::TypeActivation ('Arn', '', '', '')
AWS::CloudFront::CachePolicy ('Id', '', '', '')
AWS::CloudFront::CloudFrontOriginAccessIdentity ('Id', '', '', '')
AWS::CloudFront::ContinuousDeploymentPolicy ('Id', '', '', '')
AWS::CloudFront::Distribution ('Id', '', '', '')
AWS::CloudFront::Function ('FunctionARN', '', '', '')
AWS::CloudFront::KeyGroup ('Id', '', '', '')
AWS::CloudFront::MonitoringSubscription ('DistributionId', '', '', '')
AWS::CloudFront::OriginAccessControl ('Id', '', '', '')
AWS::CloudFront::OriginRequestPolicy ('Id', '', '', '')
AWS::CloudFront::PublicKey ('Id', '', '', '')
AWS::CloudFront::RealtimeLogConfig ('Arn', '', '', '')
AWS::CloudFront::ResponseHeadersPolicy ('Id', '', '', '')
AWS::CloudTrail::Channel ('ChannelArn', '', '', '')
AWS::CloudTrail::EventDataStore ('EventDataStoreArn', '', '', '')
AWS::CloudTrail::ResourcePolicy ('ResourceArn', '', '', '')
AWS::CloudTrail::Trail ('TrailName', '', '', '')
AWS::CloudWatch::Alarm ('AlarmName', '', '', '')
AWS::CloudWatch::CompositeAlarm ('AlarmName', '', '', '')
AWS::CloudWatch::MetricStream ('Name', '', '', '')
AWS::CodeArtifact::Domain ('Arn', '', '', '')
AWS::CodeArtifact::Repository ('Arn', '', '', '')
AWS::CodeDeploy::Application ('ApplicationName', '', '', '')
AWS::CodeDeploy::DeploymentConfig ('DeploymentConfigName', '', '', '')
AWS::CodeGuruProfiler::ProfilingGroup ('ProfilingGroupName', '', '', '')
AWS::CodeGuruReviewer::RepositoryAssociation ('AssociationArn', '', '', '')
AWS::CodePipeline::CustomActionType ('Category', 'Provider', 'Version', '')
AWS::CodeStarConnections::Connection ('ConnectionArn', '', '', '')
AWS::CodeStarNotifications::NotificationRule ('Arn', '', '', '')
AWS::Cognito::IdentityPoolPrincipalTag ('IdentityPoolId', 'IdentityProviderName', '', '')
AWS::Cognito::UserPool ('UserPoolId', '', '', '')
AWS::Cognito::UserPoolClient ('UserPoolId', 'ClientId', '', '')
AWS::Cognito::UserPoolGroup ('UserPoolId', 'GroupName', '', '')
AWS::Cognito::UserPoolUser ('UserPoolId', 'Username', '', '')
AWS::Cognito::UserPoolUserToGroupAttachment ('UserPoolId', 'GroupName', 'Username', '')
AWS::Comprehend::DocumentClassifier ('Arn', '', '', '')
AWS::Comprehend::Flywheel ('Arn', '', '', '')
AWS::Config::AggregationAuthorization ('AuthorizedAccountId', 'AuthorizedAwsRegion', '', '')
AWS::Config::ConfigRule ('ConfigRuleName', '', '', '')
AWS::Config::ConfigurationAggregator ('ConfigurationAggregatorName', '', '', '')
AWS::Config::ConformancePack ('ConformancePackName', '', '', '')
AWS::Config::OrganizationConformancePack ('OrganizationConformancePackName', '', '', '')
AWS::Config::StoredQuery ('QueryName', '', '', '')
AWS::Connect::ApprovedOrigin ('InstanceId', 'Origin', '', '')
AWS::Connect::ContactFlow ('ContactFlowArn', '', '', '')
AWS::Connect::ContactFlowModule ('ContactFlowModuleArn', '', '', '')
AWS::Connect::EvaluationForm ('EvaluationFormArn', '', '', '')
AWS::Connect::HoursOfOperation ('HoursOfOperationArn', '', '', '')
AWS::Connect::Instance ('Arn', '', '', '')
AWS::Connect::InstanceStorageConfig ('InstanceArn', 'AssociationId', 'ResourceType', '')
AWS::Connect::IntegrationAssociation ('InstanceId', 'IntegrationType', 'IntegrationArn', '')
AWS::Connect::PhoneNumber ('PhoneNumberArn', '', '', '')
AWS::Connect::Prompt ('PromptArn', '', '', '')
AWS::Connect::Queue ('QueueArn', '', '', '')
AWS::Connect::QuickConnect ('QuickConnectArn', '', '', '')
AWS::Connect::RoutingProfile ('RoutingProfileArn', '', '', '')
AWS::Connect::Rule ('RuleArn', '', '', '')
AWS::Connect::SecurityKey ('InstanceId', 'AssociationId', '', '')
AWS::Connect::TaskTemplate ('Arn', '', '', '')
AWS::Connect::User ('UserArn', '', '', '')
AWS::Connect::UserHierarchyGroup ('UserHierarchyGroupArn', '', '', '')
AWS::ConnectCampaigns::Campaign ('Arn', '', '', '')
AWS::ControlTower::EnabledControl ('TargetIdentifier', 'ControlIdentifier', '', '')
AWS::CustomerProfiles::CalculatedAttributeDefinition ('DomainName', 'CalculatedAttributeName', '', '')
AWS::CustomerProfiles::Domain ('DomainName', '', '', '')
AWS::CustomerProfiles::EventStream ('DomainName', 'EventStreamName', '', '')
AWS::CustomerProfiles::Integration ('DomainName', 'Uri', '', '')
AWS::CustomerProfiles::ObjectType ('DomainName', 'ObjectTypeName', '', '')
AWS::DataBrew::Dataset ('Name', '', '', '')
AWS::DataBrew::Job ('Name', '', '', '')
AWS::DataBrew::Project ('Name', '', '', '')
AWS::DataBrew::Recipe ('Name', '', '', '')
AWS::DataBrew::Ruleset ('Name', '', '', '')
AWS::DataBrew::Schedule ('Name', '', '', '')
AWS::DataPipeline::Pipeline ('PipelineId', '', '', '')
AWS::DataSync::Agent ('AgentArn', '', '', '')
AWS::DataSync::LocationEFS ('LocationArn', '', '', '')
AWS::DataSync::LocationFSxLustre ('LocationArn', '', '', '')
AWS::DataSync::LocationFSxONTAP ('LocationArn', '', '', '')
AWS::DataSync::LocationFSxOpenZFS ('LocationArn', '', '', '')
AWS::DataSync::LocationFSxWindows ('LocationArn', '', '', '')
AWS::DataSync::LocationHDFS ('LocationArn', '', '', '')
AWS::DataSync::LocationNFS ('LocationArn', '', '', '')
AWS::DataSync::LocationObjectStorage ('LocationArn', '', '', '')
AWS::DataSync::LocationS3 ('LocationArn', '', '', '')
AWS::DataSync::LocationSMB ('LocationArn', '', '', '')
AWS::DataSync::StorageSystem ('StorageSystemArn', '', '', '')
AWS::DataSync::Task ('TaskArn', '', '', '')
AWS::Detective::Graph ('Arn', '', '', '')
AWS::Detective::MemberInvitation ('GraphArn', 'MemberId', '', '')
AWS::Detective::OrganizationAdmin ('AccountId', '', '', '')
AWS::DevOpsGuru::LogAnomalyDetectionIntegration ('AccountId', '', '', '')
AWS::DevOpsGuru::NotificationChannel ('Id', '', '', '')
AWS::DevOpsGuru::ResourceCollection ('ResourceCollectionType', '', '', '')
AWS::DirectoryService::SimpleAD ('DirectoryId', '', '', '')
AWS::DocDBElastic::Cluster ('ClusterArn', '', '', '')
AWS::DynamoDB::GlobalTable ('TableName', '', '', '')
AWS::DynamoDB::Table ('TableName', '', '', '')
AWS::EC2::CapacityReservation ('Id', '', '', '')
AWS::EC2::CapacityReservationFleet ('CapacityReservationFleetId', '', '', '')
AWS::EC2::CarrierGateway ('CarrierGatewayId', '', '', '')
AWS::EC2::CustomerGateway ('CustomerGatewayId', '', '', '')
AWS::EC2::DHCPOptions ('DhcpOptionsId', '', '', '')
AWS::EC2::EC2Fleet ('FleetId', '', '', '')
AWS::EC2::EIP ('PublicIp', 'AllocationId', '', '')
AWS::EC2::EIPAssociation ('Id', '', '', '')
AWS::EC2::EgressOnlyInternetGateway ('Id', '', '', '')
AWS::EC2::EnclaveCertificateIamRoleAssociation ('CertificateArn', 'RoleArn', '', '')
AWS::EC2::FlowLog ('Id', '', '', '')
AWS::EC2::GatewayRouteTableAssociation ('GatewayId', '', '', '')
AWS::EC2::Host ('HostId', '', '', '')
AWS::EC2::IPAM ('IpamId', '', '', '')
AWS::EC2::IPAMAllocation ('IpamPoolId', 'IpamPoolAllocationId', 'Cidr', '')
AWS::EC2::IPAMPool ('IpamPoolId', '', '', '')
AWS::EC2::IPAMPoolCidr ('IpamPoolId', 'IpamPoolCidrId', '', '')
AWS::EC2::IPAMResourceDiscovery ('IpamResourceDiscoveryId', '', '', '')
AWS::EC2::IPAMResourceDiscoveryAssociation ('IpamResourceDiscoveryAssociationId', '', '', '')
AWS::EC2::IPAMScope ('IpamScopeId', '', '', '')
AWS::EC2::Instance ('InstanceId', '', '', '')
AWS::EC2::InternetGateway ('InternetGatewayId', '', '', '')
AWS::EC2::KeyPair ('KeyName', '', '', '')
AWS::EC2::LaunchTemplate ('LaunchTemplateId', '', '', '')
AWS::EC2::LocalGatewayRoute ('DestinationCidrBlock', 'LocalGatewayRouteTableId', '', '')
AWS::EC2::LocalGatewayRouteTable ('LocalGatewayRouteTableId', '', '', '')
AWS::EC2::LocalGatewayRouteTableVPCAssociation ('LocalGatewayRouteTableVpcAssociationId', '', '', '')
AWS::EC2::LocalGatewayRouteTableVirtualInterfaceGroupAssociation ('LocalGatewayRouteTableVirtualInterfaceGroupAssociationId', '', '', '')
AWS::EC2::NatGateway ('NatGatewayId', '', '', '')
AWS::EC2::NetworkAcl ('Id', '', '', '')
AWS::EC2::NetworkInsightsAccessScope ('NetworkInsightsAccessScopeId', '', '', '')
AWS::EC2::NetworkInsightsAccessScopeAnalysis ('NetworkInsightsAccessScopeAnalysisId', '', '', '')
AWS::EC2::NetworkInsightsAnalysis ('NetworkInsightsAnalysisId', '', '', '')
AWS::EC2::NetworkInsightsPath ('NetworkInsightsPathId', '', '', '')
AWS::EC2::NetworkInterface ('Id', '', '', '')
AWS::EC2::NetworkInterfaceAttachment ('AttachmentId', '', '', '')
AWS::EC2::NetworkPerformanceMetricSubscription ('Source', 'Destination', 'Metric', 'Statistic')
AWS::EC2::PlacementGroup ('GroupName', '', '', '')
AWS::EC2::PrefixList ('PrefixListId', '', '', '')
AWS::EC2::Route ('RouteTableId', 'CidrBlock', '', '')
AWS::EC2::RouteTable ('RouteTableId', '', '', '')
AWS::EC2::SecurityGroup ('GroupId', '', '', '')
AWS::EC2::SpotFleet ('Id', '', '', '')
AWS::EC2::Subnet ('SubnetId', '', '', '')
AWS::EC2::SubnetCidrBlock ('Id', '', '', '')
AWS::EC2::SubnetRouteTableAssociation ('Id', '', '', '')
AWS::EC2::TransitGateway ('Id', '', '', '')
AWS::EC2::TransitGatewayAttachment ('Id', '', '', '')
AWS::EC2::TransitGatewayConnect ('TransitGatewayAttachmentId', '', '', '')
AWS::EC2::TransitGatewayMulticastDomain ('TransitGatewayMulticastDomainId', '', '', '')
AWS::EC2::TransitGatewayMulticastDomainAssociation ('TransitGatewayMulticastDomainId', 'TransitGatewayAttachmentId', 'SubnetId', '')
AWS::EC2::TransitGatewayMulticastGroupMember ('TransitGatewayMulticastDomainId', 'GroupIpAddress', 'NetworkInterfaceId', '')
AWS::EC2::TransitGatewayMulticastGroupSource ('TransitGatewayMulticastDomainId', 'GroupIpAddress', 'NetworkInterfaceId', '')
AWS::EC2::TransitGatewayPeeringAttachment ('TransitGatewayAttachmentId', '', '', '')
AWS::EC2::TransitGatewayRouteTable ('TransitGatewayRouteTableId', '', '', '')
AWS::EC2::TransitGatewayVpcAttachment ('Id', '', '', '')
AWS::EC2::VPC ('VpcId', '', '', '')
AWS::EC2::VPCDHCPOptionsAssociation ('DhcpOptionsId', 'VpcId', '', '')
AWS::EC2::VPCEndpoint ('Id', '', '', '')
AWS::EC2::VPCEndpointConnectionNotification ('VPCEndpointConnectionNotificationId', '', '', '')
AWS::EC2::VPCEndpointService ('ServiceId', '', '', '')
AWS::EC2::VPCEndpointServicePermissions ('ServiceId', '', '', '')
AWS::EC2::VPCGatewayAttachment ('AttachmentType', 'VpcId', '', '')
AWS::EC2::VPCPeeringConnection ('Id', '', '', '')
AWS::EC2::VPNConnection ('VpnConnectionId', '', '', '')
AWS::EC2::VPNConnectionRoute ('DestinationCidrBlock', 'VpnConnectionId', '', '')
AWS::EC2::VPNGateway ('VPNGatewayId', '', '', '')
AWS::EC2::VerifiedAccessEndpoint ('VerifiedAccessEndpointId', '', '', '')
AWS::EC2::VerifiedAccessGroup ('VerifiedAccessGroupId', '', '', '')
AWS::EC2::VerifiedAccessInstance ('VerifiedAccessInstanceId', '', '', '')
AWS::EC2::VerifiedAccessTrustProvider ('VerifiedAccessTrustProviderId', '', '', '')
AWS::EC2::Volume ('VolumeId', '', '', '')
AWS::EC2::VolumeAttachment ('VolumeId', 'InstanceId', '', '')
AWS::ECR::PublicRepository ('RepositoryName', '', '', '')
AWS::ECR::PullThroughCacheRule ('EcrRepositoryPrefix', '', '', '')
AWS::ECR::RegistryPolicy ('RegistryId', '', '', '')
AWS::ECR::ReplicationConfiguration ('RegistryId', '', '', '')
AWS::ECR::Repository ('RepositoryName', '', '', '')
AWS::ECS::CapacityProvider ('Name', '', '', '')
AWS::ECS::Cluster ('ClusterName', '', '', '')
AWS::ECS::ClusterCapacityProviderAssociations ('Cluster', '', '', '')
AWS::ECS::PrimaryTaskSet ('Cluster', 'Service', '', '')
AWS::ECS::Service ('ServiceArn', 'Cluster', '', '')
AWS::ECS::TaskDefinition ('TaskDefinitionArn', '', '', '')
AWS::ECS::TaskSet ('Cluster', 'Service', 'Id', '')
AWS::EFS::AccessPoint ('AccessPointId', '', '', '')
AWS::EFS::FileSystem ('FileSystemId', '', '', '')
AWS::EFS::MountTarget ('Id', '', '', '')
AWS::EKS::Addon ('ClusterName', 'AddonName', '', '')
AWS::EKS::Cluster ('Name', '', '', '')
AWS::EKS::FargateProfile ('ClusterName', 'FargateProfileName', '', '')
AWS::EKS::IdentityProviderConfig ('IdentityProviderConfigName', 'ClusterName', 'Type', '')
AWS::EKS::Nodegroup ('Id', '', '', '')
AWS::EMR::SecurityConfiguration ('Name', '', '', '')
AWS::EMR::Studio ('StudioId', '', '', '')
AWS::EMR::StudioSessionMapping ('StudioId', 'IdentityType', 'IdentityName', '')
AWS::EMRContainers::VirtualCluster ('Id', '', '', '')
AWS::EMRServerless::Application ('ApplicationId', '', '', '')
AWS::ElastiCache::GlobalReplicationGroup ('GlobalReplicationGroupId', '', '', '')
AWS::ElastiCache::SubnetGroup ('CacheSubnetGroupName', '', '', '')
AWS::ElastiCache::User ('UserId', '', '', '')
AWS::ElastiCache::UserGroup ('UserGroupId', '', '', '')
AWS::ElasticBeanstalk::Application ('ApplicationName', '', '', '')
AWS::ElasticBeanstalk::ApplicationVersion ('ApplicationName', 'Id', '', '')
AWS::ElasticBeanstalk::ConfigurationTemplate ('ApplicationName', 'TemplateName', '', '')
AWS::ElasticBeanstalk::Environment ('EnvironmentName', '', '', '')
AWS::ElasticLoadBalancing::LoadBalancer ('LoadBalancerName', '', '', '')
AWS::ElasticLoadBalancingV2::Listener ('ListenerArn', '', '', '')
AWS::ElasticLoadBalancingV2::ListenerRule ('RuleArn', '', '', '')
AWS::ElasticLoadBalancingV2::LoadBalancer ('LoadBalancerArn', '', '', '')
AWS::ElasticLoadBalancingV2::TargetGroup ('TargetGroupArn', '', '', '')
AWS::EventSchemas::RegistryPolicy ('Id', '', '', '')
AWS::Events::ApiDestination ('Name', '', '', '')
AWS::Events::Archive ('ArchiveName', '', '', '')
AWS::Events::Connection ('Name', '', '', '')
AWS::Events::Endpoint ('Name', '', '', '')
AWS::Events::EventBus ('Name', '', '', '')
AWS::Events::Rule ('Arn', '', '', '')
AWS::Evidently::Experiment ('Arn', '', '', '')
AWS::Evidently::Feature ('Arn', '', '', '')
AWS::Evidently::Launch ('Arn', '', '', '')
AWS::Evidently::Project ('Arn', '', '', '')
AWS::Evidently::Segment ('Arn', '', '', '')
AWS::FIS::ExperimentTemplate ('Id', '', '', '')
AWS::FMS::NotificationChannel ('SnsTopicArn', '', '', '')
AWS::FMS::Policy ('Id', '', '', '')
AWS::FMS::ResourceSet ('Id', '', '', '')
AWS::FSx::DataRepositoryAssociation ('AssociationId', '', '', '')
AWS::FinSpace::Environment ('EnvironmentId', '', '', '')
AWS::Forecast::Dataset ('Arn', '', '', '')
AWS::Forecast::DatasetGroup ('DatasetGroupArn', '', '', '')
AWS::FraudDetector::Detector ('Arn', '', '', '')
AWS::FraudDetector::EntityType ('Arn', '', '', '')
AWS::FraudDetector::EventType ('Arn', '', '', '')
AWS::FraudDetector::Label ('Arn', '', '', '')
AWS::FraudDetector::List ('Arn', '', '', '')
AWS::FraudDetector::Outcome ('Arn', '', '', '')
AWS::FraudDetector::Variable ('Arn', '', '', '')
AWS::GameLift::Alias ('AliasId', '', '', '')
AWS::GameLift::Build ('BuildId', '', '', '')
AWS::GameLift::Fleet ('FleetId', '', '', '')
AWS::GameLift::GameServerGroup ('GameServerGroupArn', '', '', '')
AWS::GameLift::GameSessionQueue ('Name', '', '', '')
AWS::GameLift::Location ('LocationName', '', '', '')
AWS::GameLift::MatchmakingConfiguration ('Name', '', '', '')
AWS::GameLift::MatchmakingRuleSet ('Name', '', '', '')
AWS::GameLift::Script ('Id', '', '', '')
AWS::GlobalAccelerator::Accelerator ('AcceleratorArn', '', '', '')
AWS::GlobalAccelerator::EndpointGroup ('EndpointGroupArn', '', '', '')
AWS::GlobalAccelerator::Listener ('ListenerArn', '', '', '')
AWS::Glue::Registry ('Arn', '', '', '')
AWS::Glue::Schema ('Arn', '', '', '')
AWS::Glue::SchemaVersion ('VersionId', '', '', '')
AWS::Glue::SchemaVersionMetadata ('SchemaVersionId', 'Key', 'Value', '')
AWS::Grafana::Workspace ('Id', '', '', '')
AWS::GreengrassV2::ComponentVersion ('Arn', '', '', '')
AWS::GreengrassV2::Deployment ('DeploymentId', '', '', '')
AWS::GroundStation::Config ('Arn', '', '', '')
AWS::GroundStation::DataflowEndpointGroup ('Id', '', '', '')
AWS::GroundStation::MissionProfile ('Id', 'Arn', '', '')
AWS::GuardDuty::Detector ('Id', '', '', '')
AWS::GuardDuty::IPSet ('Id', 'DetectorId', '', '')
AWS::GuardDuty::ThreatIntelSet ('Id', 'DetectorId', '', '')
AWS::HealthLake::FHIRDatastore ('DatastoreId', '', '', '')
AWS::IAM::GroupPolicy ('PolicyName', 'GroupName', '', '')
AWS::IAM::OIDCProvider ('Arn', '', '', '')
AWS::IAM::RolePolicy ('PolicyName', 'RoleName', '', '')
AWS::IAM::SAMLProvider ('Arn', '', '', '')
AWS::IAM::ServerCertificate ('ServerCertificateName', '', '', '')
AWS::IAM::ServiceLinkedRole ('RoleName', '', '', '')
AWS::IAM::UserPolicy ('PolicyName', 'UserName', '', '')
AWS::IAM::VirtualMFADevice ('SerialNumber', '', '', '')
AWS::IVS::Channel ('Arn', '', '', '')
AWS::IVS::PlaybackKeyPair ('Arn', '', '', '')
AWS::IVS::RecordingConfiguration ('Arn', '', '', '')
AWS::IVS::StreamKey ('Arn', '', '', '')
AWS::IVSChat::LoggingConfiguration ('Arn', '', '', '')
AWS::IVSChat::Room ('Arn', '', '', '')
AWS::IdentityStore::Group ('GroupId', 'IdentityStoreId', '', '')
AWS::IdentityStore::GroupMembership ('MembershipId', 'IdentityStoreId', '', '')
AWS::ImageBuilder::Component ('Arn', '', '', '')
AWS::ImageBuilder::ContainerRecipe ('Arn', '', '', '')
AWS::ImageBuilder::DistributionConfiguration ('Arn', '', '', '')
AWS::ImageBuilder::Image ('Arn', '', '', '')
AWS::ImageBuilder::ImagePipeline ('Arn', '', '', '')
AWS::ImageBuilder::ImageRecipe ('Arn', '', '', '')
AWS::ImageBuilder::InfrastructureConfiguration ('Arn', '', '', '')
AWS::Inspector::AssessmentTarget ('Arn', '', '', '')
AWS::Inspector::AssessmentTemplate ('Arn', '', '', '')
AWS::Inspector::ResourceGroup ('Arn', '', '', '')
AWS::InspectorV2::Filter ('Arn', '', '', '')
AWS::InternetMonitor::Monitor ('MonitorName', '', '', '')
AWS::IoT::AccountAuditConfiguration ('AccountId', '', '', '')
AWS::IoT::Authorizer ('AuthorizerName', '', '', '')
AWS::IoT::BillingGroup ('BillingGroupName', '', '', '')
AWS::IoT::CACertificate ('Id', '', '', '')
AWS::IoT::Certificate ('Id', '', '', '')
AWS::IoT::CustomMetric ('MetricName', '', '', '')
AWS::IoT::Dimension ('Name', '', '', '')
AWS::IoT::DomainConfiguration ('DomainConfigurationName', '', '', '')
AWS::IoT::FleetMetric ('MetricName', '', '', '')
AWS::IoT::JobTemplate ('JobTemplateId', '', '', '')
AWS::IoT::Logging ('AccountId', '', '', '')
AWS::IoT::MitigationAction ('ActionName', '', '', '')
AWS::IoT::Policy ('Id', '', '', '')
AWS::IoT::ProvisioningTemplate ('TemplateName', '', '', '')
AWS::IoT::ResourceSpecificLogging ('TargetId', '', '', '')
AWS::IoT::RoleAlias ('RoleAlias', '', '', '')
AWS::IoT::ScheduledAudit ('ScheduledAuditName', '', '', '')
AWS::IoT::SecurityProfile ('SecurityProfileName', '', '', '')
AWS::IoT::Thing ('ThingName', '', '', '')
AWS::IoT::ThingGroup ('ThingGroupName', '', '', '')
AWS::IoT::ThingType ('ThingTypeName', '', '', '')
AWS::IoT::TopicRule ('RuleName', '', '', '')
AWS::IoT::TopicRuleDestination ('Arn', '', '', '')
AWS::IoTAnalytics::Channel ('ChannelName', '', '', '')
AWS::IoTAnalytics::Dataset ('DatasetName', '', '', '')
AWS::IoTAnalytics::Datastore ('DatastoreName', '', '', '')
AWS::IoTAnalytics::Pipeline ('PipelineName', '', '', '')
AWS::IoTCoreDeviceAdvisor::SuiteDefinition ('SuiteDefinitionId', '', '', '')
AWS::IoTEvents::AlarmModel ('AlarmModelName', '', '', '')
AWS::IoTEvents::DetectorModel ('DetectorModelName', '', '', '')
AWS::IoTEvents::Input ('InputName', '', '', '')
AWS::IoTFleetHub::Application ('ApplicationId', '', '', '')
AWS::IoTFleetWise::Campaign ('Name', '', '', '')
AWS::IoTFleetWise::DecoderManifest ('Name', '', '', '')
AWS::IoTFleetWise::Fleet ('Id', '', '', '')
AWS::IoTFleetWise::ModelManifest ('Name', '', '', '')
AWS::IoTFleetWise::SignalCatalog ('Name', '', '', '')
AWS::IoTFleetWise::Vehicle ('Name', '', '', '')
AWS::IoTSiteWise::AccessPolicy ('AccessPolicyId', '', '', '')
AWS::IoTSiteWise::Asset ('AssetId', '', '', '')
AWS::IoTSiteWise::AssetModel ('AssetModelId', '', '', '')
AWS::IoTSiteWise::Dashboard ('DashboardId', '', '', '')
AWS::IoTSiteWise::Gateway ('GatewayId', '', '', '')
AWS::IoTSiteWise::Portal ('PortalId', '', '', '')
AWS::IoTSiteWise::Project ('ProjectId', '', '', '')
AWS::IoTTwinMaker::ComponentType ('WorkspaceId', 'ComponentTypeId', '', '')
AWS::IoTTwinMaker::Entity ('WorkspaceId', 'EntityId', '', '')
AWS::IoTTwinMaker::Scene ('WorkspaceId', 'SceneId', '', '')
AWS::IoTTwinMaker::SyncJob ('WorkspaceId', 'SyncSource', '', '')
AWS::IoTTwinMaker::Workspace ('WorkspaceId', '', '', '')
AWS::IoTWireless::Destination ('Name', '', '', '')
AWS::IoTWireless::DeviceProfile ('Id', '', '', '')
AWS::IoTWireless::FuotaTask ('Id', '', '', '')
AWS::IoTWireless::MulticastGroup ('Id', '', '', '')
AWS::IoTWireless::NetworkAnalyzerConfiguration ('Name', '', '', '')
AWS::IoTWireless::PartnerAccount ('PartnerAccountId', '', '', '')
AWS::IoTWireless::ServiceProfile ('Id', '', '', '')
AWS::IoTWireless::TaskDefinition ('Id', '', '', '')
AWS::IoTWireless::WirelessDevice ('Id', '', '', '')
AWS::IoTWireless::WirelessDeviceImportTask ('Id', '', '', '')
AWS::IoTWireless::WirelessGateway ('Id', '', '', '')
AWS::KMS::Alias ('AliasName', '', '', '')
AWS::KMS::Key ('KeyId', '', '', '')
AWS::KMS::ReplicaKey ('KeyId', '', '', '')
AWS::KafkaConnect::Connector ('ConnectorArn', '', '', '')
AWS::Kendra::DataSource ('Id', 'IndexId', '', '')
AWS::Kendra::Faq ('Id', 'IndexId', '', '')
AWS::Kendra::Index ('Id', '', '', '')
AWS::KendraRanking::ExecutionPlan ('Id', '', '', '')
AWS::Kinesis::Stream ('Name', '', '', '')
AWS::KinesisAnalyticsV2::Application ('ApplicationName', '', '', '')
AWS::KinesisFirehose::DeliveryStream ('DeliveryStreamName', '', '', '')
AWS::KinesisVideo::SignalingChannel ('Name', '', '', '')
AWS::KinesisVideo::Stream ('Name', '', '', '')
AWS::LakeFormation::DataCellsFilter ('TableCatalogId', 'DatabaseName', 'TableName', 'Name')
AWS::LakeFormation::PrincipalPermissions ('PrincipalIdentifier', 'ResourceIdentifier', '', '')
AWS::LakeFormation::Tag ('TagKey', '', '', '')
AWS::LakeFormation::TagAssociation ('ResourceIdentifier', 'TagsIdentifier', '', '')
AWS::Lambda::Alias ('AliasArn', '', '', '')
AWS::Lambda::CodeSigningConfig ('CodeSigningConfigArn', '', '', '')
AWS::Lambda::EventSourceMapping ('Id', '', '', '')
AWS::Lambda::Function ('FunctionName', '', '', '')
AWS::Lambda::LayerVersion ('LayerVersionArn', '', '', '')
AWS::Lambda::LayerVersionPermission ('Id', '', '', '')
AWS::Lambda::Permission ('FunctionName', 'Id', '', '')
AWS::Lambda::Url ('FunctionArn', '', '', '')
AWS::Lambda::Version ('FunctionArn', '', '', '')
AWS::Lex::Bot ('Id', '', '', '')
AWS::Lex::BotAlias ('BotAliasId', 'BotId', '', '')
AWS::Lex::BotVersion ('BotId', 'BotVersion', '', '')
AWS::Lex::ResourcePolicy ('Id', '', '', '')
AWS::LicenseManager::Grant ('GrantArn', '', '', '')
AWS::LicenseManager::License ('LicenseArn', '', '', '')
AWS::Lightsail::Alarm ('AlarmName', '', '', '')
AWS::Lightsail::Bucket ('BucketName', '', '', '')
AWS::Lightsail::Certificate ('CertificateName', '', '', '')
AWS::Lightsail::Container ('ServiceName', '', '', '')
AWS::Lightsail::Database ('RelationalDatabaseName', '', '', '')
AWS::Lightsail::Disk ('DiskName', '', '', '')
AWS::Lightsail::Distribution ('DistributionName', '', '', '')
AWS::Lightsail::Instance ('InstanceName', '', '', '')
AWS::Lightsail::LoadBalancer ('LoadBalancerName', '', '', '')
AWS::Lightsail::LoadBalancerTlsCertificate ('CertificateName', 'LoadBalancerName', '', '')
AWS::Lightsail::StaticIp ('StaticIpName', '', '', '')
AWS::Location::GeofenceCollection ('CollectionName', '', '', '')
AWS::Location::Map ('MapName', '', '', '')
AWS::Location::PlaceIndex ('IndexName', '', '', '')
AWS::Location::RouteCalculator ('CalculatorName', '', '', '')
AWS::Location::Tracker ('TrackerName', '', '', '')
AWS::Location::TrackerConsumer ('TrackerName', 'ConsumerArn', '', '')
AWS::Logs::AccountPolicy ('AccountId', 'PolicyType', 'PolicyName', '')
AWS::Logs::Destination ('DestinationName', '', '', '')
AWS::Logs::LogGroup ('LogGroupName', '', '', '')
AWS::Logs::LogStream ('LogGroupName', 'LogStreamName', '', '')
AWS::Logs::MetricFilter ('LogGroupName', 'FilterName', '', '')
AWS::Logs::QueryDefinition ('QueryDefinitionId', '', '', '')
AWS::Logs::ResourcePolicy ('PolicyName', '', '', '')
AWS::Logs::SubscriptionFilter ('FilterName', 'LogGroupName', '', '')
AWS::LookoutEquipment::InferenceScheduler ('InferenceSchedulerName', '', '', '')
AWS::LookoutMetrics::Alert ('Arn', '', '', '')
AWS::LookoutMetrics::AnomalyDetector ('Arn', '', '', '')
AWS::LookoutVision::Project ('ProjectName', '', '', '')
AWS::M2::Application ('ApplicationArn', '', '', '')
AWS::M2::Environment ('EnvironmentArn', '', '', '')
AWS::MSK::BatchScramSecret ('ClusterArn', '', '', '')
AWS::MSK::Cluster ('Arn', '', '', '')
AWS::MSK::ClusterPolicy ('ClusterArn', '', '', '')
AWS::MSK::Configuration ('Arn', '', '', '')
AWS::MSK::ServerlessCluster ('Arn', '', '', '')
AWS::MSK::VpcConnection ('Arn', '', '', '')
AWS::MWAA::Environment ('Name', '', '', '')
AWS::Macie::AllowList ('Id', '', '', '')
AWS::Macie::CustomDataIdentifier ('Id', '', '', '')
AWS::Macie::FindingsFilter ('Id', '', '', '')
AWS::Macie::Session ('AwsAccountId', '', '', '')
AWS::ManagedBlockchain::Accessor ('Id', '', '', '')
AWS::MediaConnect::Bridge ('BridgeArn', '', '', '')
AWS::MediaConnect::BridgeOutput ('BridgeArn', 'Name', '', '')
AWS::MediaConnect::BridgeSource ('BridgeArn', 'Name', '', '')
AWS::MediaConnect::Flow ('FlowArn', '', '', '')
AWS::MediaConnect::FlowEntitlement ('EntitlementArn', '', '', '')
AWS::MediaConnect::FlowOutput ('OutputArn', '', '', '')
AWS::MediaConnect::FlowSource ('SourceArn', '', '', '')
AWS::MediaConnect::FlowVpcInterface ('FlowArn', 'Name', '', '')
AWS::MediaConnect::Gateway ('GatewayArn', '', '', '')
AWS::MediaPackage::Asset ('Id', '', '', '')
AWS::MediaPackage::Channel ('Id', '', '', '')
AWS::MediaPackage::OriginEndpoint ('Id', '', '', '')
AWS::MediaPackage::PackagingConfiguration ('Id', '', '', '')
AWS::MediaPackage::PackagingGroup ('Id', '', '', '')
AWS::MediaTailor::PlaybackConfiguration ('Name', '', '', '')
AWS::MemoryDB::ACL ('ACLName', '', '', '')
AWS::MemoryDB::Cluster ('ClusterName', '', '', '')
AWS::MemoryDB::ParameterGroup ('ParameterGroupName', '', '', '')
AWS::MemoryDB::SubnetGroup ('SubnetGroupName', '', '', '')
AWS::MemoryDB::User ('UserName', '', '', '')
AWS::Neptune::DBCluster ('DBClusterIdentifier', '', '', '')
AWS::NetworkFirewall::Firewall ('FirewallArn', '', '', '')
AWS::NetworkFirewall::FirewallPolicy ('FirewallPolicyArn', '', '', '')
AWS::NetworkFirewall::LoggingConfiguration ('FirewallArn', '', '', '')
AWS::NetworkFirewall::RuleGroup ('RuleGroupArn', '', '', '')
AWS::NetworkManager::ConnectAttachment ('AttachmentId', '', '', '')
AWS::NetworkManager::ConnectPeer ('ConnectPeerId', '', '', '')
AWS::NetworkManager::CoreNetwork ('CoreNetworkId', '', '', '')
AWS::NetworkManager::CustomerGatewayAssociation ('GlobalNetworkId', 'CustomerGatewayArn', '', '')
AWS::NetworkManager::Device ('GlobalNetworkId', 'DeviceId', '', '')
AWS::NetworkManager::GlobalNetwork ('Id', '', '', '')
AWS::NetworkManager::Link ('GlobalNetworkId', 'LinkId', '', '')
AWS::NetworkManager::LinkAssociation ('GlobalNetworkId', 'DeviceId', 'LinkId', '')
AWS::NetworkManager::Site ('GlobalNetworkId', 'SiteId', '', '')
AWS::NetworkManager::SiteToSiteVpnAttachment ('AttachmentId', '', '', '')
AWS::NetworkManager::TransitGatewayPeering ('PeeringId', '', '', '')
AWS::NetworkManager::TransitGatewayRegistration ('GlobalNetworkId', 'TransitGatewayArn', '', '')
AWS::NetworkManager::TransitGatewayRouteTableAttachment ('AttachmentId', '', '', '')
AWS::NetworkManager::VpcAttachment ('AttachmentId', '', '', '')
AWS::NimbleStudio::LaunchProfile ('LaunchProfileId', 'StudioId', '', '')
AWS::NimbleStudio::StreamingImage ('StudioId', 'StreamingImageId', '', '')
AWS::NimbleStudio::Studio ('StudioId', '', '', '')
AWS::NimbleStudio::StudioComponent ('StudioComponentId', 'StudioId', '', '')
AWS::OSIS::Pipeline ('PipelineArn', '', '', '')
AWS::Oam::Link ('Arn', '', '', '')
AWS::Oam::Sink ('Arn', '', '', '')
AWS::Omics::AnnotationStore ('Name', '', '', '')
AWS::Omics::ReferenceStore ('ReferenceStoreId', '', '', '')
AWS::Omics::RunGroup ('Id', '', '', '')
AWS::Omics::SequenceStore ('SequenceStoreId', '', '', '')
AWS::Omics::VariantStore ('Name', '', '', '')
AWS::Omics::Workflow ('Id', '', '', '')
AWS::OpenSearchServerless::AccessPolicy ('Type', 'Name', '', '')
AWS::OpenSearchServerless::Collection ('Id', '', '', '')
AWS::OpenSearchServerless::SecurityConfig ('Id', '', '', '')
AWS::OpenSearchServerless::SecurityPolicy ('Type', 'Name', '', '')
AWS::OpenSearchServerless::VpcEndpoint ('Id', '', '', '')
AWS::OpenSearchService::Domain ('DomainName', '', '', '')
AWS::OpsWorksCM::Server ('ServerName', '', '', '')
AWS::Organizations::Account ('AccountId', '', '', '')
AWS::Organizations::Organization ('Id', '', '', '')
AWS::Organizations::OrganizationalUnit ('Id', '', '', '')
AWS::Organizations::Policy ('Id', '', '', '')
AWS::Organizations::ResourcePolicy ('Id', '', '', '')
AWS::Panorama::ApplicationInstance ('ApplicationInstanceId', '', '', '')
AWS::Panorama::Package ('PackageId', '', '', '')
AWS::Panorama::PackageVersion ('PackageId', 'PackageVersion', 'PatchVersion', '')
AWS::Personalize::Dataset ('DatasetArn', '', '', '')
AWS::Personalize::DatasetGroup ('DatasetGroupArn', '', '', '')
AWS::Personalize::Schema ('SchemaArn', '', '', '')
AWS::Personalize::Solution ('SolutionArn', '', '', '')
AWS::Pinpoint::InAppTemplate ('TemplateName', '', '', '')
AWS::Pipes::Pipe ('Name', '', '', '')
AWS::Proton::EnvironmentAccountConnection ('Arn', '', '', '')
AWS::Proton::EnvironmentTemplate ('Arn', '', '', '')
AWS::Proton::ServiceTemplate ('Arn', '', '', '')
AWS::QLDB::Stream ('LedgerName', 'Id', '', '')
AWS::QuickSight::Analysis ('AnalysisId', 'AwsAccountId', '', '')
AWS::QuickSight::Dashboard ('AwsAccountId', 'DashboardId', '', '')
AWS::QuickSight::DataSet ('AwsAccountId', 'DataSetId', '', '')
AWS::QuickSight::DataSource ('AwsAccountId', 'DataSourceId', '', '')
AWS::QuickSight::Template ('AwsAccountId', 'TemplateId', '', '')
AWS::QuickSight::Theme ('ThemeId', 'AwsAccountId', '', '')
AWS::QuickSight::Topic ('AwsAccountId', 'TopicId', '', '')
AWS::QuickSight::VPCConnection ('AwsAccountId', 'VPCConnectionId', '', '')
AWS::RAM::Permission ('Arn', '', '', '')
AWS::RDS::CustomDBEngineVersion ('Engine', 'EngineVersion', '', '')
AWS::RDS::DBCluster ('DBClusterIdentifier', '', '', '')
AWS::RDS::DBClusterParameterGroup ('DBClusterParameterGroupName', '', '', '')
AWS::RDS::DBInstance ('DBInstanceIdentifier', '', '', '')
AWS::RDS::DBParameterGroup ('DBParameterGroupName', '', '', '')
AWS::RDS::DBProxy ('DBProxyName', '', '', '')
AWS::RDS::DBProxyEndpoint ('DBProxyEndpointName', '', '', '')
AWS::RDS::DBProxyTargetGroup ('TargetGroupArn', '', '', '')
AWS::RDS::DBSubnetGroup ('DBSubnetGroupName', '', '', '')
AWS::RDS::EventSubscription ('SubscriptionName', '', '', '')
AWS::RDS::GlobalCluster ('GlobalClusterIdentifier', '', '', '')
AWS::RDS::OptionGroup ('OptionGroupName', '', '', '')
AWS::RUM::AppMonitor ('Name', '', '', '')
AWS::Redshift::Cluster ('ClusterIdentifier', '', '', '')
AWS::Redshift::ClusterParameterGroup ('ParameterGroupName', '', '', '')
AWS::Redshift::ClusterSubnetGroup ('ClusterSubnetGroupName', '', '', '')
AWS::Redshift::EndpointAccess ('EndpointName', '', '', '')
AWS::Redshift::EndpointAuthorization ('ClusterIdentifier', 'Account', '', '')
AWS::Redshift::EventSubscription ('SubscriptionName', '', '', '')
AWS::Redshift::ScheduledAction ('ScheduledActionName', '', '', '')
AWS::RedshiftServerless::Namespace ('NamespaceName', '', '', '')
AWS::RedshiftServerless::Workgroup ('WorkgroupName', '', '', '')
AWS::RefactorSpaces::Application ('EnvironmentIdentifier', 'ApplicationIdentifier', '', '')
AWS::RefactorSpaces::Environment ('EnvironmentIdentifier', '', '', '')
AWS::RefactorSpaces::Route ('EnvironmentIdentifier', 'ApplicationIdentifier', 'RouteIdentifier', '')
AWS::RefactorSpaces::Service ('EnvironmentIdentifier', 'ApplicationIdentifier', 'ServiceIdentifier', '')
AWS::Rekognition::Collection ('CollectionId', '', '', '')
AWS::Rekognition::Project ('ProjectName', '', '', '')
AWS::Rekognition::StreamProcessor ('Name', '', '', '')
AWS::ResilienceHub::App ('AppArn', '', '', '')
AWS::ResilienceHub::ResiliencyPolicy ('PolicyArn', '', '', '')
AWS::ResourceExplorer2::DefaultViewAssociation ('AssociatedAwsPrincipal', '', '', '')
AWS::ResourceExplorer2::Index ('Arn', '', '', '')
AWS::ResourceExplorer2::View ('ViewArn', '', '', '')
AWS::ResourceGroups::Group ('Name', '', '', '')
AWS::RoboMaker::Fleet ('Arn', '', '', '')
AWS::RoboMaker::Robot ('Arn', '', '', '')
AWS::RoboMaker::RobotApplication ('Arn', '', '', '')
AWS::RoboMaker::RobotApplicationVersion ('Arn', '', '', '')
AWS::RoboMaker::SimulationApplication ('Arn', '', '', '')
AWS::RoboMaker::SimulationApplicationVersion ('Arn', '', '', '')
AWS::RolesAnywhere::CRL ('CrlId', '', '', '')
AWS::RolesAnywhere::Profile ('ProfileId', '', '', '')
AWS::RolesAnywhere::TrustAnchor ('TrustAnchorId', '', '', '')
AWS::Route53::CidrCollection ('Id', '', '', '')
AWS::Route53::DNSSEC ('HostedZoneId', '', '', '')
AWS::Route53::HealthCheck ('HealthCheckId', '', '', '')
AWS::Route53::HostedZone ('Id', '', '', '')
AWS::Route53::KeySigningKey ('HostedZoneId', 'Name', '', '')
AWS::Route53RecoveryControl::Cluster ('ClusterArn', '', '', '')
AWS::Route53RecoveryControl::ControlPanel ('ControlPanelArn', '', '', '')
AWS::Route53RecoveryControl::RoutingControl ('RoutingControlArn', '', '', '')
AWS::Route53RecoveryControl::SafetyRule ('SafetyRuleArn', '', '', '')
AWS::Route53RecoveryReadiness::Cell ('CellName', '', '', '')
AWS::Route53RecoveryReadiness::ReadinessCheck ('ReadinessCheckName', '', '', '')
AWS::Route53RecoveryReadiness::RecoveryGroup ('RecoveryGroupName', '', '', '')
AWS::Route53RecoveryReadiness::ResourceSet ('ResourceSetName', '', '', '')
AWS::Route53Resolver::FirewallDomainList ('Id', '', '', '')
AWS::Route53Resolver::FirewallRuleGroup ('Id', '', '', '')
AWS::Route53Resolver::FirewallRuleGroupAssociation ('Id', '', '', '')
AWS::Route53Resolver::ResolverConfig ('Id', '', '', '')
AWS::Route53Resolver::ResolverDNSSECConfig ('Id', '', '', '')
AWS::Route53Resolver::ResolverQueryLoggingConfig ('Id', '', '', '')
AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation ('Id', '', '', '')
AWS::Route53Resolver::ResolverRule ('ResolverRuleId', '', '', '')
AWS::Route53Resolver::ResolverRuleAssociation ('ResolverRuleAssociationId', '', '', '')
AWS::S3::AccessPoint ('Name', '', '', '')
AWS::S3::Bucket ('BucketName', '', '', '')
AWS::S3::BucketPolicy ('Bucket', '', '', '')
AWS::S3::MultiRegionAccessPoint ('Name', '', '', '')
AWS::S3::MultiRegionAccessPointPolicy ('MrapName', '', '', '')
AWS::S3ObjectLambda::AccessPoint ('Name', '', '', '')
AWS::S3ObjectLambda::AccessPointPolicy ('ObjectLambdaAccessPoint', '', '', '')
AWS::S3Outposts::AccessPoint ('Arn', '', '', '')
AWS::S3Outposts::Bucket ('Arn', '', '', '')
AWS::S3Outposts::BucketPolicy ('Bucket', '', '', '')
AWS::S3Outposts::Endpoint ('Arn', '', '', '')
AWS::SES::ConfigurationSet ('Name', '', '', '')
AWS::SES::ConfigurationSetEventDestination ('Id', '', '', '')
AWS::SES::ContactList ('ContactListName', '', '', '')
AWS::SES::DedicatedIpPool ('PoolName', '', '', '')
AWS::SES::EmailIdentity ('EmailIdentity', '', '', '')
AWS::SES::Template ('Id', '', '', '')
AWS::SES::VdmAttributes ('VdmAttributesResourceId', '', '', '')
AWS::SNS::Topic ('TopicArn', '', '', '')
AWS::SNS::TopicInlinePolicy ('TopicArn', '', '', '')
AWS::SQS::Queue ('QueueUrl', '', '', '')
AWS::SSM::Association ('AssociationId', '', '', '')
AWS::SSM::Document ('Name', '', '', '')
AWS::SSM::Parameter ('Name', '', '', '')
AWS::SSM::ResourceDataSync ('SyncName', '', '', '')
AWS::SSM::ResourcePolicy ('PolicyId', 'ResourceArn', '', '')
AWS::SSMContacts::Contact ('Arn', '', '', '')
AWS::SSMContacts::ContactChannel ('Arn', '', '', '')
AWS::SSMContacts::Plan ('Arn', '', '', '')
AWS::SSMContacts::Rotation ('Arn', '', '', '')
AWS::SSMIncidents::ReplicationSet ('Arn', '', '', '')
AWS::SSMIncidents::ResponsePlan ('Arn', '', '', '')
AWS::SSO::InstanceAccessControlAttributeConfiguration ('InstanceArn', '', '', '')
AWS::SSO::PermissionSet ('InstanceArn', 'PermissionSetArn', '', '')
AWS::SageMaker::App ('AppName', 'AppType', 'DomainId', 'UserProfileName')
AWS::SageMaker::AppImageConfig ('AppImageConfigName', '', '', '')
AWS::SageMaker::DataQualityJobDefinition ('JobDefinitionArn', '', '', '')
AWS::SageMaker::DeviceFleet ('DeviceFleetName', '', '', '')
AWS::SageMaker::Domain ('DomainId', '', '', '')
AWS::SageMaker::FeatureGroup ('FeatureGroupName', '', '', '')
AWS::SageMaker::Image ('ImageArn', '', '', '')
AWS::SageMaker::ImageVersion ('ImageVersionArn', '', '', '')
AWS::SageMaker::InferenceExperiment ('Name', '', '', '')
AWS::SageMaker::ModelBiasJobDefinition ('JobDefinitionArn', '', '', '')
AWS::SageMaker::ModelCard ('ModelCardName', '', '', '')
AWS::SageMaker::ModelExplainabilityJobDefinition ('JobDefinitionArn', '', '', '')
AWS::SageMaker::ModelPackage ('ModelPackageArn', '', '', '')
AWS::SageMaker::ModelPackageGroup ('ModelPackageGroupArn', '', '', '')
AWS::SageMaker::ModelQualityJobDefinition ('JobDefinitionArn', '', '', '')
AWS::SageMaker::MonitoringSchedule ('MonitoringScheduleArn', '', '', '')
AWS::SageMaker::Pipeline ('PipelineName', '', '', '')
AWS::SageMaker::Project ('ProjectArn', '', '', '')
AWS::SageMaker::Space ('DomainId', 'SpaceName', '', '')
AWS::SageMaker::UserProfile ('UserProfileName', 'DomainId', '', '')
AWS::Scheduler::Schedule ('Name', '', '', '')
AWS::Scheduler::ScheduleGroup ('Name', '', '', '')
AWS::SecretsManager::Secret ('Id', '', '', '')
AWS::SecurityHub::AutomationRule ('RuleArn', '', '', '')
AWS::SecurityHub::Standard ('StandardsSubscriptionArn', '', '', '')
AWS::ServiceCatalog::CloudFormationProvisionedProduct ('ProvisionedProductId', '', '', '')
AWS::ServiceCatalog::ServiceAction ('Id', '', '', '')
AWS::ServiceCatalog::ServiceActionAssociation ('ProductId', 'ProvisioningArtifactId', 'ServiceActionId', '')
AWS::ServiceCatalogAppRegistry::Application ('Id', '', '', '')
AWS::ServiceCatalogAppRegistry::AttributeGroup ('Id', '', '', '')
AWS::ServiceCatalogAppRegistry::AttributeGroupAssociation ('ApplicationArn', 'AttributeGroupArn', '', '')
AWS::ServiceCatalogAppRegistry::ResourceAssociation ('ApplicationArn', 'ResourceArn', 'ResourceType', '')
AWS::Shield::DRTAccess ('AccountId', '', '', '')
AWS::Shield::ProactiveEngagement ('AccountId', '', '', '')
AWS::Shield::Protection ('ProtectionArn', '', '', '')
AWS::Shield::ProtectionGroup ('ProtectionGroupArn', '', '', '')
AWS::Signer::ProfilePermission ('StatementId', 'ProfileName', '', '')
AWS::Signer::SigningProfile ('Arn', '', '', '')
AWS::SimSpaceWeaver::Simulation ('Name', '', '', '')
AWS::StepFunctions::Activity ('Arn', '', '', '')
AWS::StepFunctions::StateMachine ('Arn', '', '', '')
AWS::StepFunctions::StateMachineAlias ('Arn', '', '', '')
AWS::StepFunctions::StateMachineVersion ('Arn', '', '', '')
AWS::SupportApp::AccountAlias ('AccountAliasResourceId', '', '', '')
AWS::SupportApp::SlackChannelConfiguration ('TeamId', 'ChannelId', '', '')
AWS::SupportApp::SlackWorkspaceConfiguration ('TeamId', '', '', '')
AWS::Synthetics::Canary ('Name', '', '', '')
AWS::Synthetics::Group ('Name', '', '', '')
AWS::SystemsManagerSAP::Application ('Arn', '', '', '')
AWS::Timestream::Database ('DatabaseName', '', '', '')
AWS::Timestream::ScheduledQuery ('Arn', '', '', '')
AWS::Timestream::Table ('DatabaseName', 'TableName', '', '')
AWS::Transfer::Agreement ('AgreementId', 'ServerId', '', '')
AWS::Transfer::Certificate ('CertificateId', '', '', '')
AWS::Transfer::Connector ('ConnectorId', '', '', '')
AWS::Transfer::Profile ('ProfileId', '', '', '')
AWS::Transfer::Workflow ('WorkflowId', '', '', '')
AWS::VerifiedPermissions::IdentitySource ('IdentitySourceId', 'PolicyStoreId', '', '')
AWS::VerifiedPermissions::Policy ('PolicyId', 'PolicyStoreId', '', '')
AWS::VerifiedPermissions::PolicyStore ('PolicyStoreId', '', '', '')
AWS::VerifiedPermissions::PolicyTemplate ('PolicyStoreId', 'PolicyTemplateId', '', '')
AWS::VoiceID::Domain ('DomainId', '', '', '')
AWS::VpcLattice::AccessLogSubscription ('Arn', '', '', '')
AWS::VpcLattice::AuthPolicy ('ResourceIdentifier', '', '', '')
AWS::VpcLattice::Listener ('Arn', '', '', '')
AWS::VpcLattice::ResourcePolicy ('ResourceArn', '', '', '')
AWS::VpcLattice::Rule ('Arn', '', '', '')
AWS::VpcLattice::Service ('Arn', '', '', '')
AWS::VpcLattice::ServiceNetwork ('Arn', '', '', '')
AWS::VpcLattice::ServiceNetworkServiceAssociation ('Arn', '', '', '')
AWS::VpcLattice::ServiceNetworkVpcAssociation ('Arn', '', '', '')
AWS::VpcLattice::TargetGroup ('Arn', '', '', '')
AWS::WAFv2::IPSet ('Name', 'Id', 'Scope', '')
AWS::WAFv2::LoggingConfiguration ('ResourceArn', '', '', '')
AWS::WAFv2::RegexPatternSet ('Name', 'Id', 'Scope', '')
AWS::WAFv2::RuleGroup ('Name', 'Id', 'Scope', '')
AWS::WAFv2::WebACL ('Name', 'Id', 'Scope', '')
AWS::WAFv2::WebACLAssociation ('ResourceArn', 'WebACLArn', '', '')
AWS::Wisdom::Assistant ('AssistantId', '', '', '')
AWS::Wisdom::AssistantAssociation ('AssistantAssociationId', 'AssistantId', '', '')
AWS::Wisdom::KnowledgeBase ('KnowledgeBaseId', '', '', '')
AWS::WorkSpaces::ConnectionAlias ('AliasId', '', '', '')
AWS::XRay::Group ('GroupARN', '', '', '')
AWS::XRay::ResourcePolicy ('PolicyName', '', '', '')
AWS::XRay::SamplingRule ('RuleARN', '', '', '')
{
"AWS::ACMPCA::Certificate": {
"importProperties": [
"Arn",
"CertificateAuthorityArn"
]
},
"AWS::ACMPCA::CertificateAuthority": {
"importProperties": [
"Arn"
]
},
"AWS::ACMPCA::CertificateAuthorityActivation": {
"importProperties": [
"CertificateAuthorityArn"
]
},
"AWS::ACMPCA::Permission": {
"importProperties": [
"CertificateAuthorityArn",
"Principal"
]
},
"AWS::APS::RuleGroupsNamespace": {
"importProperties": [
"Arn"
]
},
"AWS::APS::Workspace": {
"importProperties": [
"Arn"
]
},
"AWS::AccessAnalyzer::Analyzer": {
"importProperties": [
"Arn"
]
},
"AWS::Amplify::App": {
"importProperties": [
"Arn"
]
},
"AWS::Amplify::Branch": {
"importProperties": [
"Arn"
]
},
"AWS::Amplify::Domain": {
"importProperties": [
"Arn"
]
},
"AWS::AmplifyUIBuilder::Component": {
"importProperties": [
"AppId",
"EnvironmentName",
"Id"
]
},
"AWS::AmplifyUIBuilder::Form": {
"importProperties": [
"AppId",
"EnvironmentName",
"Id"
]
},
"AWS::AmplifyUIBuilder::Theme": {
"importProperties": [
"AppId",
"EnvironmentName",
"Id"
]
},
"AWS::ApiGateway::Account": {
"importProperties": [
"Id"
]
},
"AWS::ApiGateway::ApiKey": {
"importProperties": [
"APIKeyId"
]
},
"AWS::ApiGateway::Authorizer": {
"importProperties": [
"RestApiId",
"AuthorizerId"
]
},
"AWS::ApiGateway::BasePathMapping": {
"importProperties": [
"DomainName",
"BasePath"
]
},
"AWS::ApiGateway::ClientCertificate": {
"importProperties": [
"ClientCertificateId"
]
},
"AWS::ApiGateway::Deployment": {
"importProperties": [
"DeploymentId",
"RestApiId"
]
},
"AWS::ApiGateway::DocumentationPart": {
"importProperties": [
"DocumentationPartId",
"RestApiId"
]
},
"AWS::ApiGateway::DocumentationVersion": {
"importProperties": [
"DocumentationVersion",
"RestApiId"
]
},
"AWS::ApiGateway::DomainName": {
"importProperties": [
"DomainName"
]
},
"AWS::ApiGateway::Method": {
"importProperties": [
"RestApiId",
"ResourceId",
"HttpMethod"
]
},
"AWS::ApiGateway::Model": {
"importProperties": [
"RestApiId",
"Name"
]
},
"AWS::ApiGateway::RequestValidator": {
"importProperties": [
"RestApiId",
"RequestValidatorId"
]
},
"AWS::ApiGateway::Resource": {
"importProperties": [
"RestApiId",
"ResourceId"
]
},
"AWS::ApiGateway::RestApi": {
"importProperties": [
"RestApiId"
]
},
"AWS::ApiGateway::Stage": {
"importProperties": [
"RestApiId",
"StageName"
]
},
"AWS::ApiGateway::UsagePlan": {
"importProperties": [
"Id"
]
},
"AWS::ApiGateway::UsagePlanKey": {
"importProperties": [
"Id"
]
},
"AWS::ApiGateway::VpcLink": {
"importProperties": [
"VpcLinkId"
]
},
"AWS::ApiGatewayV2::Api": {
"importProperties": [
"ApiId"
]
},
"AWS::ApiGatewayV2::ApiMapping": {