Anatol

Results 6 issues of Anatol

Here is the details of the problem: - attach resolver on a field on AppSync console - delete or update resolver for that field in `mappingTemplates` property of serverless.yml -...

question

As you know, AWS released new feature "Provisioned Concurrency". Could this component handle it?

``` vpcConfig: # (optional) lambda vpc configuration. default is null. securityGroupIds: # (optional) lambda vpc security group ids. - xxx - xxx subnetIds: # (optional) lambda vpc subnet ids. -...

We can use ${ssm:} syntax in serverless framework, but I can't find the way to do it with this component. I found out parameter-store component, but it doesn't work ever.

I find https://github.com/serverless-components/aws-lambda-cron this component for cronjob specifically, but it doesn't provide the option to run VPC Lambda again. Why can't we combine these into one component?

It's common practice to write initialization process like db connection (opening db connection and reuse it in handler function) at the top of handler function and write finalization process like...