Skip to content

Commit 6c4916a

Browse files
authored
One more fix for integ tests (#2951)
1 parent 7b549f4 commit 6c4916a

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

integration/config/service_names.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@
3535
EVENT_INVOKE_CONFIG = "EventInvokeConfig"
3636
EPHEMERAL_STORAGE = "EphemeralStorage"
3737
API_KEY = "ApiKey"
38+
APP_SYNC = "AppSync"

integration/helpers/resource.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from typing import Any, Callable, Dict, Set
66

77
from integration.config.service_names import (
8+
APP_SYNC,
89
DYNAMO_DB,
910
HTTP_API,
1011
LOCATION,
@@ -223,6 +224,7 @@ def _resource_using_s3_events(resource: Dict[str, Any]) -> bool:
223224
_resource_using_s3_events(resource) for resource in template_dict.get("Resources", {}).values()
224225
),
225226
LOCATION: lambda template_dict, cfn_resource_types: "AWS::Location::PlaceIndex" in cfn_resource_types,
227+
APP_SYNC: lambda template_dict, cfn_resource_types: "AWS::AppSync::GraphQLApi" in cfn_resource_types,
226228
}
227229

228230

0 commit comments

Comments
 (0)