-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource-functions-non-test-non-resource.txt
2892 lines (2892 loc) · 98.8 KB
/
resource-functions-non-test-non-resource.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
func cleanUpSubjectAlternativeNames(
func convertValidationOptions(
func acmDomainValidationOptionsHash(
func expandAcmCertificateOptions(
func flattenAcmCertificateOptions(
func isChangeNormalizeCertRemoval(
func init(
func expandAcmpcaASN1Subject(
func expandAcmpcaCertificateAuthorityConfiguration(
func expandAcmpcaCrlConfiguration(
func expandAcmpcaRevocationConfiguration(
func flattenAcmpcaASN1Subject(
func flattenAcmpcaCertificateAuthorityConfiguration(
func flattenAcmpcaCrlConfiguration(
func flattenAcmpcaRevocationConfiguration(
func migrateAcmpcaCertificateAuthorityStateV0toV1(
func init(
func listAcmpcaCertificateAuthorities(
func validateAcmPcaTemplateArn(
func expandAcmpcaValidity(
func expandAcmpcaValidityValue(
func AMIStateRefreshFunc(
func expandEc2BlockDeviceMappingForAmiEbsBlockDevice(
func expandEc2BlockDeviceMappingsForAmiEbsBlockDevice(
func flattenEc2BlockDeviceMappingForAmiEbsBlockDevice(
func flattenEc2BlockDeviceMappingsForAmiEbsBlockDevice(
func expandEc2BlockDeviceMappingForAmiEphemeralBlockDevice(
func expandEc2BlockDeviceMappingsForAmiEphemeralBlockDevice(
func flattenEc2BlockDeviceMappingForAmiEphemeralBlockDevice(
func flattenEc2BlockDeviceMappingsForAmiEphemeralBlockDevice(
func hasLaunchPermission(
func expandAmplifyAutoBranchCreationConfig(
func flattenAmplifyAutoBranchCreationConfig(
func expandAmplifyCustomRule(
func expandAmplifyCustomRules(
func flattenAmplifyCustomRule(
func flattenAmplifyCustomRules(
func flattenAmplifyProductionBranch(
func init(
func expandAmplifySubDomainSetting(
func expandAmplifySubDomainSettings(
func flattenAmplifySubDomain(
func flattenAmplifySubDomains(
func validateAuthorizerType(
func decodeApiGatewayBasePathMappingId(
func expandApiGatewayDocumentationPartLocation(
func flattenApiGatewayDocumentationPartLocation(
func decodeApiGatewayDocumentationPartId(
func decodeApiGatewayDocumentationVersionId(
func expandApiGatewayMutualTlsAuthentication(
func flattenApiGatewayMutualTlsAuthentication(
func expandApiGatewayTlsConfig(
func flattenApiGatewayTlsConfig(
func flattenAwsApiGatewayMethodSettings(
func expandApiGatewayEndpointConfiguration(
func flattenApiGatewayEndpointConfiguration(
func init(
func diffVariablesOps(
func apiGatewayStageCacheRefreshFunc(
func flattenApiGatewayStageAccessLogSettings(
func expandApiGatewayUsageApiStages(
func expandApiGatewayUsageQuotaSettings(
func expandApiGatewayUsageThrottleSettings(
func flattenApiGatewayUsageApiStages(
func flattenApiGatewayUsagePlanThrottling(
func flattenApiGatewayUsagePlanQuota(
func expandApiGateway2CorsConfiguration(
func flattenApiGateway2CorsConfiguration(
func init(
func expandApiGateway2JwtConfiguration(
func flattenApiGateway2JwtConfiguration(
func expandApiGatewayV2DomainNameConfiguration(
func flattenApiGatewayV2DomainNameConfiguration(
func expandApiGatewayV2MutualTlsAuthentication(
func flattenApiGatewayV2MutualTlsAuthentication(
func init(
func expandApiGateway2TlsConfig(
func flattenApiGateway2TlsConfig(
func expandApiGateway2IntegrationResponseParameters(
func flattenApiGateway2IntegrationResponseParameters(
func expandApiGatewayV2RouteRequestParameters(
func flattenApiGatewayV2RouteRequestParameters(
func expandApiGatewayV2AccessLogSettings(
func flattenApiGatewayV2AccessLogSettings(
func expandApiGatewayV2DefaultRouteSettings(
func flattenApiGatewayV2DefaultRouteSettings(
func expandApiGatewayV2RouteSettings(
func flattenApiGatewayV2RouteSettings(
func init(
func apigatewayVpcLinkRefreshStatusFunc(
func waitForApiGatewayVpcLinkDeletion(
func init(
func validateAppautoscalingPolicyImportInput(
func expandAppautoscalingStepAdjustments(
func expandAppautoscalingCustomizedMetricSpecification(
func expandAppautoscalingPredefinedMetricSpecification(
func getAwsAppautoscalingPutScalingPolicyInput(
func getAwsAppautoscalingPolicy(
func expandStepScalingPolicyConfiguration(
func flattenStepScalingPolicyConfiguration(
func flattenAppautoscalingStepAdjustments(
func flattenTargetTrackingScalingPolicyConfiguration(
func flattenCustomizedMetricSpecification(
func flattenMetricDimensions(
func flattenPredefinedMetricSpecification(
func appautoscalingScheduledActionPopulateInputForCreate(
func appautoscalingScheduledActionPopulateInputForUpdate(
func expandScalableTargetAction(
func flattenScalableTargetAction(
func getAwsAppautoscalingTarget(
func expandAppmeshGatewayRouteSpec(
func expandAppmeshGatewayRouteTarget(
func expandAppmeshGrpcGatewayRoute(
func expandAppmeshHttpGatewayRoute(
func flattenAppmeshGatewayRouteSpec(
func flattenAppmeshGatewayRouteTarget(
func flattenAppmeshGrpcGatewayRoute(
func flattenAppmeshHttpGatewayRoute(
func init(
func init(
func appmeshRouteHttpRouteSchema(
func init(
func expandAppmeshVirtualGatewaySpec(
func expandAppmeshVirtualGatewayClientPolicy(
func flattenAppmeshVirtualGatewaySpec(
func flattenAppmeshVirtualGatewayClientPolicy(
func init(
func appmeshVirtualNodeClientPolicySchema(
func migrateAppmeshVirtualNodeStateV0toV1(
func init(
func migrateAppmeshVirtualRouterStateV0toV1(
func init(
func init(
func init(
func init(
func flattenAppRunnerCustomDomainCertificateValidationRecords(
func expandAppRunnerServiceEncryptionConfiguration(
func expandAppRunnerServiceHealthCheckConfiguration(
func expandAppRunnerServiceInstanceConfiguration(
func expandAppRunnerServiceSourceConfiguration(
func expandAppRunnerServiceAuthenticationConfiguration(
func expandAppRunnerServiceImageConfiguration(
func expandAppRunnerServiceCodeRepository(
func expandAppRunnerServiceImageRepository(
func expandAppRunnerServiceCodeConfiguration(
func expandAppRunnerServiceCodeConfigurationValues(
func expandAppRunnerServiceSourceCodeVersion(
func flattenAppRunnerServiceEncryptionConfiguration(
func flattenAppRunnerServiceHealthCheckConfiguration(
func flattenAppRunnerServiceInstanceConfiguration(
func flattenAppRunnerServiceCodeRepository(
func flattenAppRunnerServiceCodeConfiguration(
func flattenAppRunnerServiceCodeConfigurationValues(
func flattenAppRunnerServiceSourceCodeVersion(
func flattenAppRunnerServiceSourceConfiguration(
func flattenAppRunnerServiceAuthenticationConfiguration(
func flattenAppRunnerServiceImageConfiguration(
func flattenAppRunnerServiceImageRepository(
func init(
func decodeAppSyncApiKeyId(
func getAppsyncApiKey(
func decodeAppsyncDataSourceID(
func expandAppsyncDynamodbDataSourceConfig(
func flattenAppsyncDynamodbDataSourceConfig(
func expandAppsyncElasticsearchDataSourceConfig(
func flattenAppsyncElasticsearchDataSourceConfig(
func expandAppsyncHTTPDataSourceConfig(
func flattenAppsyncHTTPDataSourceConfig(
func expandAppsyncLambdaDataSourceConfig(
func flattenAppsyncLambdaDataSourceConfig(
func decodeAppsyncFunctionID(
func expandAppsyncGraphqlApiLogConfig(
func expandAppsyncGraphqlApiOpenIDConnectConfig(
func expandAppsyncGraphqlApiUserPoolConfig(
func expandAppsyncGraphqlApiAdditionalAuthProviders(
func expandAppsyncGraphqlApiCognitoUserPoolConfig(
func flattenAppsyncGraphqlApiLogConfig(
func flattenAppsyncGraphqlApiOpenIDConnectConfig(
func flattenAppsyncGraphqlApiUserPoolConfig(
func flattenAppsyncGraphqlApiAdditionalAuthenticationProviders(
func flattenAppsyncGraphqlApiCognitoUserPoolConfig(
func init(
func decodeAppsyncResolverID(
func expandAppsyncResolverCachingConfig(
func flattenAppsyncPipelineConfig(
func flattenAppsyncCachingConfig(
func expandAthenaResultConfiguration(
func executeAndExpectNoRowsWhenCreate(
func executeAndExpectMatchingRow(
func executeAndExpectNoRowsWhenDrop(
func queryExecutionResult(
func queryExecutionStateRefreshFunc(
func flattenAthenaResultSet(
func expandAthenaWorkGroupConfiguration(
func expandAthenaWorkGroupConfigurationUpdates(
func expandAthenaWorkGroupResultConfiguration(
func expandAthenaWorkGroupResultConfigurationUpdates(
func expandAthenaWorkGroupEncryptionConfiguration(
func flattenAthenaWorkGroupConfiguration(
func flattenAthenaWorkGroupResultConfiguration(
func flattenAthenaWorkGroupEncryptionConfiguration(
func generatePutLifecycleHookInputs(
func waitUntilAutoscalingGroupLoadBalancerTargetGroupsRemoved(
func waitUntilAutoscalingGroupLoadBalancerTargetGroupsAdded(
func resourceAutoScalingGroupWarmPoolDelete(
func waitForWarmPoolDeletion(
func asgWarmPoolStateRefreshFunc(
func getAwsAutoscalingGroupWarmPool(
func getAwsAutoscalingGroup(
func enableASGSuspendedProcesses(
func enableASGMetricsCollection(
func updateASGSuspendedProcesses(
func updateASGMetricsCollection(
func getELBInstanceStates(
func getTargetGroupInstanceStates(
func expandVpcZoneIdentifiers(
func expandAutoScalingInstancesDistribution(
func expandAutoScalingLaunchTemplate(
func expandAutoScalingLaunchTemplateOverrides(
func expandAutoScalingLaunchTemplateOverride(
func expandAutoScalingLaunchTemplateSpecification(
func expandAutoScalingMixedInstancesPolicy(
func flattenAutoScalingInstancesDistribution(
func flattenAutoScalingLaunchTemplate(
func flattenAutoScalingLaunchTemplateOverrides(
func flattenAutoScalingLaunchTemplateSpecification(
func flattenAutoScalingMixedInstancesPolicy(
func flattenWarmPoolConfiguration(
func waitUntilAutoscalingGroupLoadBalancersAdded(
func waitUntilAutoscalingGroupLoadBalancersRemoved(
func createPutWarmPoolInput(
func createAutoScalingGroupInstanceRefreshInput(
func expandAutoScalingGroupInstanceRefreshPreferences(
func autoScalingGroupRefreshInstances(
func cancelAutoscalingInstanceRefresh(
func validateAutoScalingGroupInstanceRefreshTriggerFields(
func init(
func autoscalingTagDescriptionsToMap(
func waitForASGCapacity(
func isELBCapacitySatisfied(
func capacitySatisfiedCreate(
func capacitySatisfiedUpdate(
func getAwsAutoscalingPutLifecycleHookInput(
func getAwsAutoscalingLifecycleHook(
func checkLifecycleHookExistsByName(
func addNotificationConfigToGroupsWithTopic(
func removeNotificationConfigToGroupsWithTopic(
func autoScalingPlansScalingPlanId(
func expandAutoScalingPlansApplicationSource(
func flattenAutoScalingPlansApplicationSource(
func expandAutoScalingPlansScalingInstructions(
func flattenAutoScalingPlansScalingInstructions(
func init(
func getAwsAutoscalingPutScalingPolicyInput(
func getAwsAutoscalingPolicy(
func expandTargetTrackingConfiguration(
func expandPredictiveScalingConfig(
func expandPredictiveScalingMetricSpecifications(
func expandPredefinedLoadMetricSpecification(
func expandPredefinedMetricPairSpecification(
func expandPredefinedScalingMetricSpecification(
func flattenTargetTrackingConfiguration(
func flattenPredictiveScalingConfig(
func flattenPredictiveScalingMetricSpecifications(
func flattenPredefinedScalingMetricSpecification(
func flattenPredefinedLoadMetricSpecification(
func flattenPredefinedMetricPairSpecification(
func expandBackupPlanRules(
func expandBackupPlanAdvancedBackupSettings(
func expandBackupPlanCopyActions(
func expandBackupPlanLifecycle(
func flattenBackupPlanRules(
func flattenBackupPlanAdvancedBackupSettings(
func flattenBackupPlanCopyActions(
func flattenBackupPlanCopyActionLifecycle(
func backupBackupPlanHash(
func expandBackupConditionTags(
func init(
func init(
func expandBatchComputeResource(
func expandBatchLaunchTemplateSpecification(
func flattenBatchComputeResource(
func flattenBatchLaunchTemplateSpecification(
func init(
func validateAwsBatchJobContainerProperties(
func expandBatchJobContainerProperties(
func flattenBatchContainerProperties(
func expandJobDefinitionParameters(
func expandBatchRetryStrategy(
func expandBatchEvaluateOnExit(
func expandBatchEvaluateOnExits(
func flattenBatchRetryStrategy(
func flattenBatchEvaluateOnExit(
func flattenBatchEvaluateOnExits(
func expandBatchJobTimeout(
func flattenBatchJobTimeout(
func init(
func createComputeEnvironmentOrder(
func deleteBatchJobQueue(
func disableBatchJobQueue(
func getJobQueue(
func batchJobQueueRefreshStatusFunc(
func init(
func expandAwsBudgetsBudgetActionActionThreshold(
func expandAwsBudgetsBudgetActionSubscriber(
func expandAwsBudgetsBudgetActionActionDefinition(
func expandAwsBudgetsBudgetActionActionScpActionDefinition(
func expandAwsBudgetsBudgetActionActionSsmActionDefinition(
func expandAwsBudgetsBudgetActionActionIamActionDefinition(
func flattenAwsBudgetsBudgetActionSubscriber(
func flattenAwsBudgetsBudgetActionActionThreshold(
func flattenAwsBudgetsBudgetActionIamActionDefinition(
func flattenAwsBudgetsBudgetActionScpActionDefinition(
func flattenAwsBudgetsBudgetActionSsmActionDefinition(
func flattenAwsBudgetsBudgetActionDefinition(
func init(
func expandBudgetNotificationsUnmarshal(
func expandBudgetSubscribers(
func flattenBudgetsCostTypes(
func convertCostFiltersToStringMap(
func expandBudgetsBudgetUnmarshal(
func decodeBudgetsBudgetID(
func expandBudgetsCostTypesUnmarshal(
func init(
func listCloudFormationStackSets(
func expandAutoDeployment(
func flattenStackSetAutoDeploymentResponse(
func listCloudFormationStackSetInstances(
func init(
func init(
func init(
func expandCloudformationLoggingConfig(
func flattenCloudformationLoggingConfig(
func migrateCloudFrontDistributionStateV0toV1(
func init(
func originShieldItem(
func init(
func expandCloudFrontKeyGroupConfig(
func init(
func expandOriginAccessIdentityConfig(
func flattenOriginAccessIdentityConfig(
func expandPublicKeyConfig(
func expandCloudFrontEndPoints(
func flattenCloudFrontEndPoints(
func init(
func readCloudHsmV2ClusterCertificates(
func init(
func cloudTrailGetLoggingStatus(
func cloudTrailSetLogging(
func cloudTrailSetEventSelectors(
func expandAwsCloudTrailEventSelector(
func expandAwsCloudTrailEventSelectorDataResource(
func flattenAwsCloudTrailEventSelector(
func flattenAwsCloudTrailEventSelectorDataResource(
func cloudTrailSetInsightSelectors(
func expandAwsCloudTrailInsightSelector(
func flattenAwsCloudTrailInsightSelector(
func init(
func expandAwsCloudWatchPutCompositeAlarmInput(
func init(
func isCloudWatchDashboardNotFoundErr(
func init(
func buildCreateArchiveInputStruct(
func buildUpdateArchiveInputStruct(
func init(
func init(
func expandAwsCloudWatchEventCreateConnectionAuthRequestParameters(
func expandAwsCreateConnectionApiKeyAuthRequestParameters(
func expandAwsCreateConnectionBasicAuthRequestParameters(
func expandAwsCreateConnectionOAuthAuthRequestParameters(
func expandAwsCreateConnectionOAuthClientRequestParameters(
func expandAwsConnectionHttpParameters(
func expandAwsConnectionHttpParametersBody(
func expandAwsConnectionHttpParametersHeader(
func expandAwsConnectionHttpParametersQueryString(
func flattenAwsCloudWatchEventConnectionAuthParameters(
func flattenAwsConnectionApiKeyAuthParameters(
func flattenAwsConnectionBasicAuthParameters(
func flattenAwsConnectionOAuthParameters(
func flattenAwsConnectionOAuthClientResponseParameters(
func flattenAwsConnectionHttpParameters(
func expandAwsCloudWatchEventUpdateConnectionAuthRequestParameters(
func expandAwsUpdateConnectionApiKeyAuthRequestParameters(
func expandAwsUpdateConnectionBasicAuthRequestParameters(
func expandAwsUpdateConnectionOAuthAuthRequestParameters(
func expandAwsUpdateConnectionOAuthClientRequestParameters(
func init(
func getPolicyStatement(
func validateCloudWatchEventPermissionAction(
func validateCloudWatchEventPermissionPrincipal(
func validateCloudWatchEventPermissionStatementID(
func (
func (
func (
func (
func (
func (
func (
func findCloudWatchEventPermissionPolicyStatementByID(
func expandCloudWatchEventsCondition(
func flattenCloudWatchEventPermissionPolicyStatementCondition(
func init(
func buildPutRuleInputStruct(
func getBooleanStateFromString(
func getStringStateFromBoolean(
func validateEventPatternValue(
func init(
func buildPutTargetInputStruct(
func expandAwsCloudWatchEventTargetRunParameters(
func expandAwsCloudWatchEventTargetEcsParameters(
func expandAwsCloudWatchEventRetryPolicyParameters(
func expandAwsCloudWatchEventDeadLetterConfigParameters(
func expandAwsCloudWatchEventTargetEcsParametersNetworkConfiguration(
func expandAwsCloudWatchEventTargetBatchParameters(
func expandAwsCloudWatchEventTargetKinesisParameters(
func expandAwsCloudWatchEventTargetSqsParameters(
func expandAwsCloudWatchEventTargetHttpParameters(
func expandAwsCloudWatchEventTransformerParameters(
func flattenAwsCloudWatchEventTargetRunParameters(
func flattenAwsCloudWatchEventTargetEcsParameters(
func flattenAwsCloudWatchEventTargetEcsParametersNetworkConfiguration(
func flattenAwsCloudWatchEventTargetBatchParameters(
func flattenAwsCloudWatchEventTargetKinesisParameters(
func flattenAwsCloudWatchEventTargetSqsParameters(
func flattenAwsCloudWatchEventTargetHttpParameters(
func flattenAwsCloudWatchInputTransformer(
func flatternAwsCloudWatchEventTargetRetryPolicy(
func flatternAwsCloudWatchEventTargetDeadLetterConfig(
func init(
func lookupCloudWatchLogDestination(
func lookupCloudWatchLogGroup(
func init(
func lookupCloudWatchLogMetricFilter(
func := testAccCheckCloudWatchLogMetricFilterExists(
func lookupCloudWatchLogResourcePolicy(
func init(
func lookupCloudWatchLogStream(
func validateCloudWatchLogStreamName(
func getAwsCloudWatchLogsSubscriptionFilterInput(
func cloudwatchLogsSubscriptionFilterId(
func validateResourceAwsCloudWatchMetricAlarm(
func getAwsCloudWatchPutMetricAlarmInput(
func flattenAwsCloudWatchMetricAlarmDimensions(
func flattenAwsCloudWatchMetricAlarmMetrics(
func flattenAwsCloudWatchMetricAlarmMetricsMetricStat(
func expandCloudWatchMetricAlarmMetrics(
func expandCloudWatchMetricAlarmMetricsMetric(
func expandAwsCloudWatchMetricAlarmDimensions(
func migrateCloudWatchMetricAlarmStateV0toV1(
func validateCloudWatchMetricStreamName(
func expandCloudWatchMetricStreamFilters(
func flattenCloudWatchMetricStreamFilters(
func init(
func getAwsCloudWatchQueryDefinitionInput(
func init(
func decodeCodeArtifactDomainID(
func init(
func expandCodeArtifactUpstreams(
func flattenCodeArtifactUpstreams(
func flattenCodeArtifactExternalConnections(
func decodeCodeArtifactRepositoryID(
func init(
func expandProjectFileSystemLocations(
func expandProjectFileSystemLocation(
func expandProjectSecondaryArtifacts(
func expandProjectArtifacts(
func expandProjectArtifactData(
func expandProjectCache(
func expandProjectEnvironment(
func expandProjectLogsConfig(
func expandCodeBuildBuildBatchConfig(
func expandCodeBuildBatchRestrictions(
func expandCodeBuildCloudWatchLogsConfig(
func expandCodeBuildS3LogsConfig(
func expandCodeBuildVpcConfig(
func expandProjectSecondarySources(
func expandProjectSource(
func expandProjectSourceData(
func flattenAwsCodeBuildProjectFileSystemLocations(
func flattenAwsCodeBuildProjectFileSystemLocation(
func flattenAwsCodeBuildLogsConfig(
func flattenAwsCodeBuildCloudWatchLogs(
func flattenAwsCodeBuildS3Logs(
func flattenAwsCodeBuildProjectSecondaryArtifacts(
func flattenAwsCodeBuildProjectArtifacts(
func flattenAwsCodeBuildProjectArtifactsData(
func flattenAwsCodebuildProjectCache(
func flattenAwsCodeBuildProjectEnvironment(
func flattenAwsCodebuildRegistryCredential(
func flattenAwsCodeBuildProjectSecondarySources(
func flattenAwsCodeBuildProjectSource(
func flattenAwsCodeBuildProjectSourceData(
func flattenAwsCodebuildProjectGitSubmodulesConfig(
func flattenAwsCodebuildProjectBuildStatusConfig(
func flattenAwsCodeBuildVpcConfig(
func flattenAwsCodeBuildBuildBatchConfig(
func flattenAwsCodeBuildBuildBatchConfigRestrictions(
func environmentVariablesToMap(
func sourceAuthToMap(
func validateAwsCodeBuildProjectName(
func validateAwsCodeBuildProjectS3LogsLocation(
func init(
func expandAwsCodeBuildReportGroupExportConfig(
func flattenAwsCodeBuildReportGroupExportConfig(
func expandAwsCodeBuildReportGroupS3ReportExportConfig(
func flattenAwsCodeBuildReportGroupS3ReportExportConfig(
func init(
func expandWebhookFilterGroups(
func expandWebhookFilterData(
func flattenAwsCodeBuildWebhookFilterGroups(
func flattenAwsCodeBuildWebhookFilterData(
func expandAwsCodeCommitTriggers(
func init(
func expandAwsCodeDeployConfigMinimumHealthHosts(
func expandAwsCodeDeployTrafficRoutingConfig(
func expandAwsCodeDeployTrafficTimeBasedCanaryConfig(
func expandAwsCodeDeployTrafficTimeBasedLinearConfig(
func flattenAwsCodeDeployConfigMinimumHealthHosts(
func flattenAwsCodeDeployTrafficRoutingConfig(
func flattenAwsCodeDeployTrafficRoutingCanaryConfig(
func flattenAwsCodeDeployTrafficRoutingLinearConfig(
func buildOnPremTagFilters(
func buildEC2TagFilters(
func buildEC2TagSet(
func buildTriggerConfigs(
func buildAutoRollbackConfig(
func buildAlarmConfig(
func expandCodeDeployEcsServices(
func expandCodeDeployElbInfo(
func expandCodeDeployTargetGroupInfo(
func expandCodeDeployTargetGroupPairInfo(
func expandCodeDeployTrafficRoute(
func expandDeploymentStyle(
func expandLoadBalancerInfo(
func expandBlueGreenDeploymentConfig(
func ec2TagFiltersToMap(
func onPremisesTagFiltersToMap(
func ec2TagSetToMap(
func triggerConfigsToMap(
func autoRollbackConfigToMap(
func alarmConfigToMap(
func flattenCodeDeployEcsServices(
func flattenCodeDeployElbInfo(
func flattenCodeDeployTargetGroupInfo(
func flattenCodeDeployTargetGroupPairInfo(
func flattenCodeDeployTrafficRoute(
func flattenDeploymentStyle(
func flattenLoadBalancerInfo(
func flattenBlueGreenDeploymentConfig(
func loadBalancerInfoHash(
func baseCodeDeployConfig(
func expandAwsCodePipeline(
func expandAwsCodePipelineArtifactStores(
func expandAwsCodePipelineArtifactStoreData(
func flattenAwsCodePipelineArtifactStore(
func flattenAwsCodePipelineArtifactStores(
func expandAwsCodePipelineStages(
func flattenAwsCodePipelineStages(
func expandAwsCodePipelineActions(
func flattenAwsCodePipelineStageActions(
func expandAwsCodePipelineActionsOutputArtifacts(
func flattenAwsCodePipelineActionsOutputArtifacts(
func expandAwsCodePipelineActionsInputArtifacts(
func flattenAwsCodePipelineActionsInputArtifacts(
func suppressCodePipelineStageActionConfiguration(
func hashCodePipelineGitHubToken(
func init(
func extractCodePipelineWebhookRules(
func extractCodePipelineWebhookAuthConfig(
func getCodePipelineWebhook(
func flattenCodePipelineWebhookFilters(
func flattenCodePipelineWebhookAuthenticationConfiguration(
func expandCodeStarConnectionsHostVpcConfiguration(
func flattenCodeStarConnectionsHostVpcConfiguration(
func expandCodeStarNotificationsNotificationRuleTargets(
func cleanupCodeStarNotificationsNotificationRuleTargets(
func validateRoleMappings(
func baseAWSCognitoIdentityPoolRolesAttachmentConfig(
func decodeCognitoIdentityProviderID(
func decodeCognitoResourceServerID(
func expandAwsCognitoUserPoolClientAnalyticsConfig(
func flattenAwsCognitoUserPoolClientAnalyticsConfig(
func expandAwsCognitoUserPoolClientTokenValidityUnitsType(
func flattenAwsCognitoUserPoolClientTokenValidityUnitsType(
func init(
func expandCognitoSmsConfiguration(
func expandCognitoSoftwareTokenMfaConfiguration(
func flattenCognitoSmsConfiguration(
func flattenCognitoSoftwareTokenMfaConfiguration(
func expandCognitoUserPoolAccountRecoverySettingConfig(
func flattenCognitoUserPoolAccountRecoverySettingConfig(
func flattenCognitoUserPoolEmailConfiguration(
func expandCognitoUserPoolAdminCreateUserConfig(
func flattenCognitoUserPoolAdminCreateUserConfig(
func expandCognitoUserPoolDeviceConfiguration(
func expandCognitoUserPoolLambdaConfig(
func flattenCognitoUserPoolLambdaConfig(
func expandCognitoUserPoolPasswordPolicy(
func flattenCognitoUserPoolUserPoolAddOns(
func expandCognitoUserPoolSchema(
func flattenCognitoUserPoolSchema(
func expandCognitoUserPoolUsernameConfiguration(
func flattenCognitoUserPoolUsernameConfiguration(
func expandCognitoUserPoolVerificationMessageTemplate(
func flattenCognitoUserPoolVerificationMessageTemplate(
func flattenCognitoUserPoolDeviceConfiguration(
func flattenCognitoUserPoolPasswordPolicy(
func cognitoUserPoolSchemaAttributeMatchesStandardAttribute(
func expandCognitoUserPoolCustomSMSSender(
func flattenCognitoUserPoolCustomSMSSender(
func expandCognitoUserPoolCustomEmailSender(
func flattenCognitoUserPoolCustomEmailSender(
func expandCognitoUserPoolEmailConfig(
func init(
func parseCognitoUserPoolUICustomizationID(
func describeConfigAggregateAuthorizations(
func init(
func configRuleSourceDetailsHash(
func init(
func init(
func expandConfigConformancePackInputParameters(
func flattenConfigConformancePackInputParameters(
func init(
func expandConfigRemediationConfigurationParameters(
func flattenRemediationConfigurationParameters(
func checkAwsCurReportDefinitionPropertyCombination(
func init(
func customerGatewayRefreshFunc(
func checkGatewayDeleteResponse(
func waitForDataPipelineDeletion(
func init(
func init(
func init(
func expandDataSyncNfsMountOptions(
func flattenDataSyncNfsMountOptions(
func init(
func init(
func init(
func expandAwsDataSyncTaskSchedule(
func flattenAwsDataSyncTaskSchedule(
func expandAwsDataSyncFilterRules(
func flattenAwsDataSyncFilterRules(
func init(
func setDaxClusterNodeData(
func (
func (
func (
func daxClusterStateRefreshFunc(
func init(
func init(
func waitForRdsEventSubscriptionDeletion(
func init(
func waitUntilAwsDbInstanceIsAvailableAfterUpdate(
func waitUntilAwsDbInstanceIsDeleted(
func diffCloudwatchLogsExportConfiguration(
func expandRestoreToPointInTime(
func rdsDescribeDbInstanceRole(
func waitForRdsDbInstanceRoleAssociation(
func waitForRdsDbInstanceRoleDisassociation(
func init(
func optionInList(
func flattenOptionNames(
func init(
func init(
func createAwsDbParameterGroupsExceedDefaultAwsLimit(
func updateAwsDbParameterGroupsExceedDefaultAwsLimit(
func expandDbProxyConnectionPoolConfig(
func flattenDbProxyTargetGroupConnectionPoolConfig(
func expandDbProxyAuth(
func flattenDbProxyAuth(
func flattenDbProxyAuths(
func init(
func init(
func init(
func revokeAllNetworkACLEntries(
func revokeAllRouteTableRules(
func revokeDefaultSecurityGroupRules(
func migrateAwsDefaultSecurityGroupStateV0toV1(
func parseDSConditionalForwarderId(
func buildVpcSettings(
func buildConnectSettings(
func createDirectoryConnector(
func createSimpleDirectoryService(
func createActiveDirectoryService(
func enableDirectoryServiceSso(
func waitForDirectoryServiceDirectoryDeletion(
func init(
func expandDlmPolicyDetails(
func flattenDlmPolicyDetails(
func expandDlmSchedules(
func flattenDlmSchedules(
func expandDlmCreateRule(
func flattenDlmCreateRule(
func expandDlmRetainRule(
func flattenDlmRetainRule(
func expandDlmTags(
func flattenDlmTags(
func dlmLifecyclePolicyDestroy(
func checkDlmLifecyclePolicyExists(
func dlmLifecyclePolicyBasicConfig(
func dlmLifecyclePolicyFullConfig(
func dlmLifecyclePolicyFullUpdateConfig(
func dlmLifecyclePolicyConfigTags1(
func dlmLifecyclePolicyConfigTags2(
func flattenDmsElasticsearchSettings(
func flattenDmsKafkaSettings(
func flattenDmsKinesisSettings(
func flattenDmsMongoDbSettings(
func flattenDmsS3Settings(
func suppressExtraConnectionAttributesDiffs(
func extraConnectionAttributesToSet(
func engineSettingsToSet(
func dmsEndpointDestroy(
func checkDmsEndpointExists(
func dmsEndpointBasicConfig(
func dmsEndpointBasicConfigUpdate(
func dmsEndpointDynamoDbConfig(
func dmsEndpointDynamoDbConfigUpdate(
func dmsEndpointS3Config(
func dmsEndpointS3ExtraConnectionAttributesConfig(
func dmsEndpointS3ConfigUpdate(
func dmsEndpointElasticsearchConfigBase(
func dmsEndpointElasticsearchConfig(
func dmsEndpointElasticsearchExtraConnectionAttributesConfig(
func dmsEndpointElasticsearchConfigErrorRetryDuration(
func dmsEndpointElasticsearchConfigFullLoadErrorPercentage(
func dmsEndpointKafkaConfigBroker(
func dmsEndpointKafkaConfigTopic(
func dmsEndpointKinesisConfig(
func dmsEndpointKinesisConfigUpdate(
func dmsEndpointMongoDbConfig(
func dmsEndpointMongoDbConfigUpdate(
func dmsEndpointDocDBConfig(
func dmsEndpointDocDBConfigUpdate(
func dmsEndpointDb2Config(
func dmsEndpointDb2ConfigUpdate(
func init(
func checkDmsReplicationSubnetGroupExists(
func checkDmsReplicationSubnetGroupExistsWithProviders(
func dmsReplicationSubnetGroupDestroy(
func dmsReplicationSubnetGroupConfig(
func dmsReplicationSubnetGroupConfigUpdate(
func dmsReplicationTaskRemoveReadOnlySettings(
func checkDmsReplicationTaskExists(
func dmsReplicationTaskDestroy(
func dmsReplicationTaskConfig(
func waitForDocDBClusterUpdate(
func buildDocDBCloudwatchLogsExportConfiguration(
func waitForDocDBClusterParameterGroupDeletion(
func waitForDocDBSubnetGroupDeletion(
func dxBgpPeerStateRefresh(
func dxConnectionRefreshStateFunc(
func isNoSuchDxConnectionErr(
func init(
func dxGatewayAssociationStateRefresh(
func dxGatewayAssociationId(
func waitForDirectConnectGatewayAssociationAvailabilityOnCreate(
func waitForDirectConnectGatewayAssociationAvailabilityOnUpdate(
func waitForDirectConnectGatewayAssociationDeletion(
func describeDirectConnectGatewayAssociationProposal(
func expandDirectConnectGatewayAssociationProposalAllowedPrefixes(
func flattenDirectConnectGatewayAssociationProposalAllowedPrefixes(
func init(
func init(
func dxGatewayStateRefresh(
func waitForDirectConnectGatewayDeletion(
func init(
func dxHostedPrivateVirtualInterfaceAccepterWaitUntilAvailable(
func dxHostedPrivateVirtualInterfaceWaitUntilAvailable(
func dxHostedPublicVirtualInterfaceAccepterWaitUntilAvailable(
func dxHostedPublicVirtualInterfaceWaitUntilAvailable(
func dxHostedTransitVirtualInterfaceAccepterWaitUntilAvailable(
func dxHostedTransitVirtualInterfaceWaitUntilAvailable(
func dxLagRefreshStateFunc(
func isNoSuchDxLagErr(
func init(
func dxPrivateVirtualInterfaceWaitUntilAvailable(
func dxPublicVirtualInterfaceWaitUntilAvailable(
func dxTransitVirtualInterfaceWaitUntilAvailable(
func flattenAwsDynamoDbGlobalTable(
func expandAwsDynamoDbReplicaUpdateCreateReplicas(
func expandAwsDynamoDbReplicaUpdateCreateReplica(
func expandAwsDynamoDbReplicaUpdateDeleteReplicas(
func expandAwsDynamoDbReplicaUpdateDeleteReplica(
func expandAwsDynamoDbReplicas(
func expandAwsDynamoDbReplica(
func flattenAwsDynamoDbReplicas(
func flattenAwsDynamoDbReplica(
func dynamoDbKinesisStreamingDestinationParseId(
func isDynamoDbTableOptionDisabled(
func createDynamoDbReplicas(
func updateDynamoDbTimeToLive(
func updateDynamoDbPITR(
func updateDynamoDbReplica(
func updateDynamoDbDiffGSI(
func deleteDynamoDbTable(
func deleteDynamoDbReplicas(
func flattenDynamoDbTableAttributeDefinitions(
func flattenDynamoDbTableLocalSecondaryIndex(
func flattenDynamoDbTableGlobalSecondaryIndex(
func flattenDynamodDbTableServerSideEncryption(
func expandDynamoDbAttributes(
func flattenDynamoDbReplicaDescription(
func flattenDynamoDbReplicaDescriptions(
func flattenDynamoDbTtl(
func flattenDynamoDbPitr(
func expandDynamoDbLocalSecondaryIndexes(
func expandDynamoDbGlobalSecondaryIndex(
func expandDynamoDbProvisionedThroughput(
func expandDynamoDbProjection(
func expandDynamoDbKeySchema(
func expandDynamoDbEncryptAtRestOptions(
func validateDynamoDbTableAttributes(
func validateDynamoDbProvisionedThroughput(
func validateDynamoDbTableItem(
func buildDynamoDbExpressionAttributeNames(
func buildDynamoDbProjectionExpression(
func buildDynamoDbTableItemId(
func buildDynamoDbTableItemQueryKey(
func migrateDynamoDBStateV0toV1(
func init(
func setEbsEncryptionByDefault(
func resourceAWSEbsVolumeUpdate(
func volumeStateRefreshFunc(
func init(
func ec2DescribeAvailabilityZoneGroup(
func ec2AvailabilityZoneGroupOptInStatusRefreshFunc(
func waitForEc2AvailabilityZoneGroupOptInStatus(
func init(
func init(
func deleteClientVpnAuthorizationRule(
func flattenConnLoggingConfig(
func flattenAuthOptsConfig(
func expandEc2ClientVpnAuthenticationRequest(
func deleteClientVpnEndpoint(
func init(
func init(
func deleteClientVpnNetworkAssociation(
func init(
func deleteClientVpnRoute(
func ec2FleetRefreshFunc(
func expandEc2FleetLaunchTemplateConfigRequests(
func expandEc2FleetLaunchTemplateConfigRequest(
func expandEc2FleetLaunchTemplateOverridesRequests(
func expandEc2FleetLaunchTemplateOverridesRequest(
func expandEc2LaunchTemplateSpecificationRequest(
func expandEc2OnDemandOptionsRequest(
func expandEc2SpotOptionsRequest(
func expandFleetSpotMaintenanceStrategiesRequest(
func expandFleetSpotCapacityRebalanceRequest(
func expandEc2TargetCapacitySpecificationRequest(
func flattenEc2FleetLaunchTemplateConfigs(
func flattenEc2FleetLaunchTemplateOverrides(
func flattenEc2FleetLaunchTemplateSpecification(
func flattenEc2OnDemandOptions(
func flattenEc2SpotOptions(
func flattenFleetSpotMaintenanceStrategies(
func flattenFleetSpotCapacityRebalance(
func flattenEc2TargetCapacitySpecification(
func decodeEc2LocalGatewayRouteID(
func getEc2LocalGatewayRoute(
func getEc2LocalGatewayRouteTableVpcAssociation(
func expandEc2AddPrefixListEntry(
func expandEc2AddPrefixListEntries(
func expandEc2RemovePrefixListEntry(
func expandEc2RemovePrefixListEntries(
func flattenEc2PrefixListEntry(
func flattenEc2PrefixListEntries(
func extractResourceIDAndKeyFromEc2TagID(
func findEc2TrafficMirrorFilterRule(
func buildTrafficMirrorPortRangeRequest(
func buildTrafficMirrorFilterRulePortRangeSchema(
func init(
func init(
func init(
func flattenEcrPublicRepositoryCatalogData(
func expandEcrPublicRepositoryCatalogData(
func init(
func expandEcrReplicationConfigurationReplicationConfiguration(
func flattenEcrReplicationConfigurationReplicationConfiguration(
func expandEcrReplicationConfigurationReplicationConfigurationRules(
func flattenEcrReplicationConfigurationReplicationConfigurationRules(
func expandEcrReplicationConfigurationReplicationConfigurationRulesDestinations(
func flattenEcrReplicationConfigurationReplicationConfigurationRulesDestinations(
func flattenImageScanningConfiguration(
func expandEcrRepositoryEncryptionConfiguration(
func flattenEcrRepositoryEncryptionConfiguration(
func init(
func expandAutoScalingGroupProvider(
func flattenAutoScalingGroupProvider(
func init(
func expandEcsSettings(
func flattenEcsSettings(
func flattenECSClusterConfiguration(
func flattenECSClusterConfigurationExecuteCommandConfiguration(
func flattenECSClusterConfigurationExecuteCommandConfigurationLogConfiguration(
func expandECSClusterConfiguration(
func expandECSClusterConfigurationExecuteCommandConfiguration(
func expandECSClusterConfigurationExecuteCommandLogConfiguration(
func init(
func expandEcsDeploymentController(
func flattenEcsDeploymentController(
func expandECSDeploymentCircuitBreaker(
func flattenECSDeploymentCircuitBreaker(
func flattenEcsNetworkConfiguration(
func expandEcsNetworkConfiguration(
func expandEcsCapacityProviderStrategy(
func flattenEcsCapacityProviderStrategy(
func expandPlacementConstraints(
func flattenServicePlacementConstraints(
func expandPlacementStrategy(
func flattenPlacementStrategy(
func flattenServiceRegistries(
func buildFamilyAndRevisionFromARN(
func getNameFromARN(
func init(
func validateAwsEcsTaskDefinitionContainerDefinitions(
func flattenPlacementConstraints(
func flattenProxyConfiguration(
func flattenEcsInferenceAccelerators(
func expandEcsInferenceAccelerators(
func expandEcsTaskDefinitionPlacementConstraints(
func expandEcsTaskDefinitionProxyConfiguration(
func expandEcsVolumes(
func expandEcsVolumesDockerVolume(
func expandEcsVolumesEFSVolume(
func expandEcsVolumesEFSVolumeAuthorizationConfig(
func expandEcsVolumesFsxWinVolume(
func expandEcsVolumesFsxWinVolumeAuthorizationConfig(
func flattenEcsVolumes(
func flattenDockerVolumeConfiguration(
func flattenEFSVolumeConfiguration(
func flattenEFSVolumeAuthorizationConfig(
func flattenFsxWinVolumeConfiguration(
func flattenFsxWinVolumeAuthorizationConfig(
func flattenEcsContainerDefinitions(
func expandEcsContainerDefinitions(
func expandEcsTaskDefinitionEphemeralStorage(
func flattenEcsTaskDefinitionEphemeralStorage(
func migrateEcsTaskDefinitionStateV0toV1(
func init(
func hasEmptyAccessPoints(
func expandEfsAccessPointPosixUser(
func expandEfsAccessPointRootDirectory(
func expandEfsAccessPointRootDirectoryCreationInfo(
func flattenEfsAccessPointPosixUser(
func flattenEfsAccessPointRootDirectory(
func flattenEfsAccessPointRootDirectoryCreationInfo(
func init(
func hasEmptyFileSystems(
func flattenEfsFileSystemLifecyclePolicies(
func expandEfsFileSystemLifecyclePolicies(
func flattenEfsFileSystemSizeInBytes(
func init(
func getAzFromSubnetId(
func waitForDeleteEfsMountTarget(
func hasEmptyMountTargets(
func init(
func getEc2EgressOnlyInternetGateway(
func init(
func readAwsEipAssociation(
func describeAddressesById(
func disassociateEip(
func waitForEc2AddressAssociationClassic(
func init(
func init(
func deleteEksCluster(
func expandEksEncryptionConfig(
func expandEksProvider(
func expandEksVpcConfigRequest(
func expandEksVpcConfigUpdateRequest(
func expandEksNetworkConfigRequest(
func expandEksLoggingTypes(
func flattenEksCertificate(
func flattenEksIdentity(
func flattenEksOidc(
func flattenEksEncryptionConfig(
func flattenEksProvider(
func flattenEksVpcConfigResponse(
func flattenEksEnabledLogTypes(
func flattenEksNetworkConfig(
func refreshEksClusterStatus(
func refreshEksUpdateStatus(
func waitForDeleteEksCluster(
func waitForUpdateEksCluster(
func init(
func expandEksFargateProfileSelectors(
func flattenEksFargateProfileSelectors(
func refreshEksFargateProfileStatus(
func waitForEksFargateProfileDeletion(
func init(
func expandEksLaunchTemplateSpecification(
func expandEksNodegroupScalingConfig(
func expandEksTaints(
func expandEksUpdateTaintsPayload(
func expandEksRemoteAccessConfig(
func expandEksUpdateLabelsPayload(
func flattenEksAutoScalingGroups(
func flattenEksLaunchTemplateSpecification(
func flattenEksNodeGroupResources(