# AWS Lambda Java Events v3 ### Event Models Supported * `ActiveMQEvent` * `APIGatewayCustomAuthorizerEvent` * `APIGatewayProxyRequestEvent` * `APIGatewayProxyResponseEvent` * `APIGatewayV2CustomAuthorizerEvent` * `APIGatewayV2HTTPEvent` * `APIGatewayV2HTTPResponse` * `APIGatewayV2WebSocketEvent` * `APIGatewayV2WebSocketResponse` * `ApplicationLoadBalancerRequestEvent` * `ApplicationLoadBalancerResponseEvent` * `AppSyncLambdaAuthorizerEvent` * `AppSyncLambdaAuthorizerResponse` * `CloudFormationCustomResourceEvent` * `CloudFrontEvent` * `CloudWatchLogsEvent` * `CodeCommitEvent` * `CognitoEvent` * `CognitoUserPoolCreateAuthChallengeEvent` * `CognitoUserPoolCustomMessageEvent` * `CognitoUserPoolDefineAuthChallengeEvent` * `CognitoUserPoolEvent` * `CognitoUserPoolMigrateUserEvent` * `CognitoUserPoolPostAuthenticationEvent` * `CognitoUserPoolPostConfirmationEvent` * `CognitoUserPoolPreAuthenticationEvent` * `CognitoUserPoolPreSignUpEvent` * `CognitoUserPoolPreTokenGenerationEvent` * `CognitoUserPoolVerifyAuthChallengeResponseEvent` * `ConfigEvent` * `ConnectEvent` * `DynamodbEvent` * `IoTButtonEvent` * `KafkaEvent` * `KinesisAnalyticsFirehoseInputPreprocessingEvent` * `KinesisAnalyticsInputPreprocessingResponse` * `KinesisAnalyticsOutputDeliveryEvent` * `KinesisAnalyticsOutputDeliveryResponse` * `KinesisAnalyticsStreamsInputPreprocessingEvent` * `KinesisEvent` * `KinesisFirehoseEvent` * `LambdaDestinationEvent` * `LexEvent` * `RabbitMQEvent` * `S3BatchEvent` * `S3BatchResponse` * `S3Event` * `ScheduledEvent` * `SecretsManagerRotationEvent` * `SimpleIAMPolicyResponse` * `SNSEvent` * `SQSBatchResponse` * `SQSEvent` ### Getting Started [Maven](https://maven.apache.org) ```xml ... com.amazonaws aws-lambda-java-core 1.2.2 com.amazonaws aws-lambda-java-events 3.11.2 ... ``` [Gradle](https://gradle.org) ```groovy 'com.amazonaws:aws-lambda-java-core:1.2.1' 'com.amazonaws:aws-lambda-java-events:3.11.0' ``` [Leiningen](http://leiningen.org) and [Boot](http://boot-clj.com) ```clojure [com.amazonaws/aws-lambda-java-core "1.2.1"] [com.amazonaws/aws-lambda-java-events "3.11.0"] ``` [sbt](http://www.scala-sbt.org) ```scala "com.amazonaws" % "aws-lambda-java-core" % "1.2.1" "com.amazonaws" % "aws-lambda-java-events" % "3.11.0" ```