skip to Main Content

Amazon web services – AWS CDK – API Gateway LambdaIntegration – passing a literal using requestParameters?

I'm trying to pass a literal value to the called lambda function using API gateway integration requestParameters but with no luck. My current code is: myApigatewayResource.addMethod( 'GET', new apiGateway.LambdaIntegration( myLambdaFunctionHandler, { requestParameters: { 'integration.request.querystring.customvalue': '123456789' } } ), { methodResponses:…

VIEW QUESTION

Amazon web services – Deploy a React-based single-page application to Amazon S3 and CloudFront – Access Denied

I tried using Amazon's instructions step by step in this article: https://docs.aws.amazon.com/prescriptive-guidance/latest/patterns/deploy-a-react-based-single-page-application-to-amazon-s3-and-cloudfront.html Perhaps this article is outdated, incomplete or I have misunderstood something. I have done everything step-by-step on my free tier, and have verified and retried several times. I…

VIEW QUESTION
Back To Top
Search