Skip to content

Latest commit

 

History

History
76 lines (72 loc) · 1.99 KB

File metadata and controls

76 lines (72 loc) · 1.99 KB

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

Usage

<dependencies>
    ...
    <dependency>
        <groupId>com.amazonaws</groupId>
        <artifactId>aws-lambda-java-core</artifactId>
        <version>1.2.3</version>
    </dependency>
    <dependency>
        <groupId>com.amazonaws</groupId>
        <artifactId>aws-lambda-java-events</artifactId>
        <version>3.11.4</version>
    </dependency>
    ...
</dependencies>