Keeton Hodgson

Results 70 comments of Keeton Hodgson
trafficstars

@IstvanSzilagyi We noticed that the request parameters feature is incomplete during our internal QA before releasing this feature. You can follow the thread about it here: https://github.com/awslabs/serverless-application-model/issues/931#issuecomment-534463087 Caching should work...

You can use any cloudformation resource in your SAM templates; SAM does not alter these resources. You should be able to use any new feature from CFN in SAM without...

@milancermak thank you for bringing this up. I agree that we should update the documentation to more clearly state these "best practice" decisions that SAM makes. Your other point is...

@urvi-desai is your `SwaggerKey` variable changing between deployments? SAM does not have permission to read your S3 files; the only way it can tell if something in that file has...

I looked into this some more. It appears that SAM does not resolve the `SwaggerKey` parameter (leaves it as-is), which means it does not know that the underlying value has...

CFN intrinsic functions are not currently supported in the "Path" parameter. This is because the path is necessary as a dictionary key in the generated swagger, and SAM can't resolve...

I believe that the developer creating the function would need to create the role with the correct permissions attached. I don't see a way to add that policy to an...

@deleugpn I believe the idea is to have a CodePipeline event on the Severless::Function that sets up the necessary permissions for CodePipeline to be able to call the Serverless::Function resource....

You can use the native cloudformation resources for Aurora in a SAM template. Are there any abstractions that you have in mind that you would like SAM to make for...

SAM already generates all of this when no `DefinitionBody` or `DefinitionUri` property is supplied; it creates the swagger API definition based on what events are in the function. Is this...