You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+133-2Lines changed: 133 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
# Serverless APIGateway Service Proxy
5
5
6
-
This Serverless Framewrok plugin supports the AWS service proxy integration feature of API Gateway. You can directly connect API Gateway to AWS services without Lambda.
6
+
This Serverless Framework plugin supports the AWS service proxy integration feature of API Gateway. You can directly connect API Gateway to AWS services without Lambda.
7
7
8
8
## TOC
9
9
@@ -28,7 +28,7 @@ This Serverless Framewrok plugin supports the AWS service proxy integration feat
28
28
29
29
## Install
30
30
31
-
Run `servelress plugin install` in your Serverless project.
31
+
Run `serverless plugin install` in your Serverless project.
roleArn: # Optional. A default role is created when not configured
545
+
Fn::GetAtt: [CustomS3Role, Arn]
546
+
547
+
resources:
548
+
Resources:
549
+
SQSQueue:
550
+
Type: 'AWS::SQS::Queue'
551
+
CustomS3Role:
552
+
# Custom Role definition
553
+
Type: 'AWS::IAM::Role'
554
+
```
555
+
556
+
### Customizing API Gateway parameters
557
+
558
+
The plugin allows one to specify which [parameters the API Gateway method accepts](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestparameters).
559
+
560
+
A common use case is to pass custom data to the integration request:
0 commit comments