|
1 | 1 | # AWS Lambda Java Events v3
|
2 | 2 |
|
3 | 3 | ### Event Models Supported
|
| 4 | +* `APIGatewayCustomAuthorizerEvent` |
4 | 5 | * `APIGatewayProxyRequestEvent`
|
5 | 6 | * `APIGatewayProxyResponseEvent`
|
| 7 | +* `APIGatewayV2CustomAuthorizerEvent` |
6 | 8 | * `APIGatewayV2HTTPEvent`
|
7 | 9 | * `APIGatewayV2HTTPResponse`
|
8 | 10 | * `APIGatewayV2WebSocketEvent`
|
|
31 | 33 | * `S3Event`
|
32 | 34 | * `ScheduledEvent`
|
33 | 35 | * `SecretsManagerRotationEvent`
|
| 36 | +* `SimpleIAMPolicyResponse` |
34 | 37 | * `SNSEvent`
|
35 | 38 | * `SQSEvent`
|
36 | 39 |
|
|
52 | 55 | <dependency>
|
53 | 56 | <groupId>com.amazonaws</groupId>
|
54 | 57 | <artifactId>aws-lambda-java-events</artifactId>
|
55 |
| - <version>3.3.1</version> |
| 58 | + <version>3.4.0</version> |
56 | 59 | </dependency>
|
57 | 60 | ...
|
58 | 61 | </dependencies>
|
|
62 | 65 |
|
63 | 66 | ```groovy
|
64 | 67 | 'com.amazonaws:aws-lambda-java-core:1.2.1'
|
65 |
| -'com.amazonaws:aws-lambda-java-events:3.3.1' |
| 68 | +'com.amazonaws:aws-lambda-java-events:3.4.0' |
66 | 69 | ```
|
67 | 70 |
|
68 | 71 | [Leiningen](http://leiningen.org) and [Boot](http://boot-clj.com)
|
69 | 72 |
|
70 | 73 | ```clojure
|
71 | 74 | [com.amazonaws/aws-lambda-java-core "1.2.1"]
|
72 |
| -[com.amazonaws/aws-lambda-java-events "3.3.1"] |
| 75 | +[com.amazonaws/aws-lambda-java-events "3.4.0"] |
73 | 76 | ```
|
74 | 77 |
|
75 | 78 | [sbt](http://www.scala-sbt.org)
|
76 | 79 |
|
77 | 80 | ```scala
|
78 | 81 | "com.amazonaws" % "aws-lambda-java-core" % "1.2.1"
|
79 |
| -"com.amazonaws" % "aws-lambda-java-events" % "3.3.1" |
| 82 | +"com.amazonaws" % "aws-lambda-java-events" % "3.4.0" |
80 | 83 | ```
|
0 commit comments