aws-lambda-java-integration
Audited by Runlayer on Feb 25, 2026
Malicious tool definition detected
Tool: references/serverless-deployment.md [1/5] Description: # Serverless Deployment Reference Complete guide for deploying Java Lambda functions with Serverless Framework, AWS SAM, and CI/CD pipelines.
Tool: references/serverless-deployment.md [2/5] Description: ```yaml # .github/workflows/sam-pipeline.yml name: SAM Pipeline on: push: branches: [main] workflow_dispatch: inputs: environment: description: 'Deployment environment' required: true default: 'staging' type: choice options: - staging - production jobs: build-and-deploy: runs-on: ubuntu-latest permissions: id-token: write contents: read steps: - uses: actions/checkout@v4 - uses: aws-actions/setup-sam@v2 with: use-installer: true - uses
Tool: references/serverless-deployment.md [3/5] Description: Properties: CodeUri: build/libs/function.jar Handler: com.example.Handler Layers: - !Ref DependenciesLayer Environment: Variables: JAVA_TOOL_OPTIONS: -cp /opt/java/lib/*:lib/* ``` ```groovy // build.gradle - Create layer structure task buildLayer(type: Copy) { from configurations.runtimeClasspath into "build/layers/dependencies/java/lib" // Exclude AWS SDK provided by Lambda runtime exclude 'aws-lambda-java-core*.jar' exclude 'aws-lamb
Tool: references/serverless-deployment.md [4/5]
Tool: references/serverless-deployment.md [5/5]
Malicious tool definition detected
Tool: references/testing-lambda.md [1/2] Description: # Testing Lambda Reference Complete guide for testing AWS Lambda Java functions including unit tests, integration tests, and performance testing.
Tool: references/testing-lambda.md [2/2]
Malicious tool definition detected
Tool: SKILL.md [1/2] Description: --- name: aws-lambda-java-integration description: Provides AWS Lambda integration patterns for Java with cold start optimization. Use when deploying Java functions to AWS Lambda, choosing between Micronaut and Raw Java approaches, optimizing cold starts below 1 second, configuring API Gateway or ALB integration, or implementing serverless Java applications.
Tool: SKILL.md [2/2] Description: Set up SAM build and deploy 4.
Malicious tool definition detected
Tool: references/micronaut-lambda.md [1/2] Description: # Micronaut Lambda Reference Complete guide for creating AWS Lambda functions with Micronaut Framework.
Tool: references/micronaut-lambda.md [2/2]
Malicious tool definition detected
Tool: references/raw-java-lambda.md [1/2] Description: # Raw Java Lambda Reference Complete guide for creating minimal AWS Lambda functions in pure Java without frameworks.
Tool: references/raw-java-lambda.md [2/2] Description: dynamoDb.getItem(request); if (!response.hasItem()) { return null; } return mapToUser(response.item()); } @Override public User create(User user) { PutItemRequest request = PutItemRequest.builder() .tableName(tableName) .item(mapFromUser(user)) .conditionExpression("attribute_not_exists(id)") .build(); dynamoDb.putItem(request); return user; } @Override public void delete(String id) { DeleteItemRequest request = DeleteItemRequest.builder() .