Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
25 views

I have the following pulumi go code which uses AWS Integration to start a StepFunction. func DealRequestTemplate(stateMachineArn pulumi.StringInput) pulumi.StringInput { return pulumi.Sprintf(`#...
khinester's user avatar
  • 3,522
0 votes
0 answers
53 views

I have this api gateway in my main stack: api_gateway = _api_gw.LambdaRestApi( self, f"{construct_id}-gw-api", handler=lambda_hello, rest_api_name=f"gw-api{env_ext}"...
Ahron Gold's user avatar
0 votes
1 answer
85 views

I’m developing a Spring Boot application deployed behind an AWS API Gateway (HTTP API v2) with Lambda (handler based on SpringBootLambdaContainerHandler and HttpApiV2ProxyRequest). I’m using OAuth2 ...
nekatte's user avatar
  • 11
0 votes
0 answers
20 views

According the Customize HTTP API access logs, the logging variable $context.awsEndpointRequestId is populated from x-amz-request-id or x-amzn-requestId header. I am directly hitting the my HTTP ...
gowthz's user avatar
  • 469
1 vote
0 answers
52 views

I have tried to import mongodb into my lambda function and I keep getting an error message when I attempt to test it. All the recommended resolutions I have seen assume I am working in an environment ...
Daniel DeLuca's user avatar
0 votes
0 answers
44 views

My input to API Gateway looks like this: { "detail": { "stuff": "goeshere" }, "detail-type": "ApiGatewayTest", "source&...
Jesse Barnum's user avatar
  • 6,936
1 vote
2 answers
82 views

The AWS docs here state that "You can use parameter mapping in your integration request for proxy and non-proxy integrations, but to use parameter mapping for an integration response, you need a ...
MacGruber's user avatar
  • 973
0 votes
0 answers
58 views

This is my first time deploying a web application using AWS and I could successfully see the static pages but not dynamic pages now. I've read that when CloudFront gets a header with authorization, it ...
Himawari.Ksm's user avatar
0 votes
0 answers
36 views

I am having difficulty invoking a sagemaker endpoint from API gateway. The API gateway API is a REST API (POST method type) with Sagemaker Runtime as the Integration type. The HTTP method in the ...
Eddy C's user avatar
  • 1
2 votes
1 answer
121 views

I have a simple Python script that makes a GET request to a REST API hosted in AWS API Gateway. To authorize the request, I use the temporary credentials obtained by assuming a role (a role that is ...
atemandri's user avatar
0 votes
1 answer
136 views

I'm working on an AWS API Gateway setup. I need to dynamically set the Access-Control-Allow-Origin header in the response based on the incoming Origin header from the client request. This is necessary ...
Lakshitha Samod's user avatar
0 votes
1 answer
52 views

I'm working with AWS Api Gateway integrated with SQS. I would like to catch a header from the request to the Api Gateway and map it to the body, so it becomes part of the message the SQS will recieve. ...
Federico Crovetto's user avatar
0 votes
0 answers
77 views

Problem Description: I'm encountering persistent 403 Forbidden errors when trying to use WebSocket connections with AWS API Gateway. We recently migrated from ca-central-1 to us-east-1 region, and ...
Ruturaj Vaidya's user avatar
0 votes
0 answers
70 views

I have an AWS API Gateway resource /foo with a GET method. It has a Lambda integration, which for the purposes of this question simply returns bar. However I want the API to be protected, so I have ...
Garret Wilson's user avatar
0 votes
0 answers
76 views

What is the issue? We use AWS API Gateway for integration with the AWS S3 using REST calls. In the API Gateway transformation we haven't supported HTTP_HEADERS yet. And we don't want to roll out ...
Zahid Khan's user avatar
  • 3,375
0 votes
1 answer
58 views

Trying to create and API Gateway with lambda and attach the authorizer to it. The api and lambda creation works perfectly, but when I add the authorizer section, I get the following error: Error: ...
Eduard Grinberg's user avatar
1 vote
0 answers
62 views

I'm trying to configure API Gateway to provide a POST method that sends the StartQuery action to CloudWatch Logs but I just seem to get 404 errors in the log output as when I use Edit integration ...
deejbee's user avatar
  • 1,258
1 vote
1 answer
101 views

When creating an API endpoint on the AWS console, 2 options exist: Option A: A "REST API" with "API endpoint type" of "Regional" or "Edge-optimized" or "...
Ram's user avatar
  • 951
0 votes
1 answer
61 views

I have an AWS Lambda function connected to an API Gateway (Regional HTTP API) and my domain is linked to CloudFront. However, my application's canonical URL is being set to the API Gateway domain ...
Aren Sade's user avatar
  • 574
0 votes
0 answers
58 views

Context I have an api-gateway with a custom authorizer that validates a JWT. The authorizer gives back broad resource permissions. Something like the following: { "Version": "2012-10-...
NebulaFox's user avatar
0 votes
1 answer
82 views

I have this template: #set($context.responseOverride.header.A = 'ab "cd"') In Postman I see a header A with value "ab \"cd\"". I want to see in Postman a header A with ...
Rony Tesler's user avatar
  • 1,396
0 votes
0 answers
38 views

I have the following code which takes a POST input and writes the data in a DynamoDB table. It works if I don't add the validation to check if the key:value pair exists. Here is the code: const ...
khinester's user avatar
  • 3,522
0 votes
0 answers
131 views

Been working on this semi-secure (will add HTTPS later) API Gateway. I've managed to deploy the TF into the cloud, and it built fine. My main issue currently is that when I try to use the Invoke URL (...
veila's user avatar
  • 93
2 votes
2 answers
120 views

In my current project I want to call a long running Lambda function from an API Gateway asynchronously. All resources are defined in a SAM template. I tried to follow the instructions in https://docs....
Nantoka's user avatar
  • 4,283
0 votes
0 answers
45 views

I have created an API using AWS API Gateway, which is protected by an Amazon Cognito User Pool. I need to obtain a token from Amazon Cognito to invoke or access this API from my Salesforce Apex class. ...
Valli69's user avatar
  • 10k

1
2 3 4 5
156