You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creating or updating AWS pipeline resources ...
Checking pipeline resources
√ Found lambda
‼ API not found
√ Lambda execution role found
Pipeline does not exist.
One or more pipeline resources are missing.
AppSync 1234567890API is missing.
Fix the issue manually or create the pipeline resources with a new name.
The problem is the usage of ListGraphqlApisCommand to determine if the API exists in pipelineResources.js - this command has a maxResults arg which is not being set and the default is something like 10 results. If there are more than 10 app sync APIs then it is possible the utility will think the API does not exist.
The text was updated successfully, but these errors were encountered:
The utility can sometimes error saying 'API not found' even if the app sync API does exist in AWS when attempting to update an existing app sync API.
Example of input args:
Example output:
The problem is the usage of
ListGraphqlApisCommand
to determine if the API exists inpipelineResources.js
- this command has amaxResults
arg which is not being set and the default is something like 10 results. If there are more than 10 app sync APIs then it is possible the utility will think the API does not exist.The text was updated successfully, but these errors were encountered: