Joris Conijn

Results 19 comments of Joris Conijn

Question: > set 3 DeploymentAccountTargetRegions Are you hosting your deployment pipelines in 3 regions in the deployment account? Input for a possible solution, why is a Lambda kept alive to...

@hugoduraes, I sort have the same as you but I solved it differently, so: ```yaml Api: Type: AWS::Serverless::Api Properties: DefinitionBody: Fn::Transform: Name: AWS::Include Parameters: Location: resources/openapi.yaml ``` and then in...

@hugoduraes so in your example it should look like this: ```yaml ApiName: Type: AWS::Serverless::Api Properties: StageName: foo DefinitionBody: 'Fn::Transform': Name: AWS::Include Parameters: Location: swagger.yaml FunctionName: Type: AWS::Serverless::Function Properties: CodeUri: ./dist...

Yes, the following section in the OpenAPI definition would take care of that: ```yaml x-amazon-apigateway-request-validators: full: validateRequestBody: true validateRequestParameters: true x-amazon-apigateway-request-validator: full ``` You could also place the `x-amazon-apigateway-request-validator` property...

@vbudilov i see it i saw the test definition in the package.json so i assumed their were tests, i'm trying to build a console for my api based on your...

This would be very helpful currently i have already done this by using CodePipeline, CodeBuild and CFN resources with CustomResources as followed: - CodeBuild packages the web application and is...

One of the things that i have ran into is that i needed to set the ContentType to `text/html` and so on else CloudFront will force download the file from...

One major reason why I want v2 support is the ability to use the Stubber: https://pkg.go.dev/github.com/awsdocs/aws-doc-sdk-examples/gov2/testtools