Agent skill · DevOps & Cloud

aws-sdk-java-v2-lambda

Provides AWS Lambda patterns using AWS SDK for Java 2.x. Use when invoking Lambda functions, creating/updating functions, managing function configurations, working with Lambda layers, or integrating Lambda with Spring Boot applications.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill aws-sdk-java-v2-lambda --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Allowed tools: ReadWriteEditBashGlobGrep
Path: skills/api/aws-sdk-java-v2-lambda/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# AWS SDK for Java 2.x - AWS Lambda ## Overview AWS Lambda is a compute service that runs code without managing servers. Use this skill to implement AWS Lambda operations using AWS SDK for Java 2.x in applications and services. ## When to Use - Invoking Lambda functions from Java applications - Deploying and updating Lambda functions via SDK - Managing function configurations and layers - Integrating Lambda with Spring Boot applications ## Quick Reference | Operation | SDK Method | Use Case | |-----------|------------|----------| | **Invoke** | `invoke()` | Synchronous/async function invocation | | **List Functions** | `listFunctions()` | Get all Lambda functions | | **Get Config** | `getFunction()` | Retrieve function configuration | | **Create Function** | `createFunction()` | Create new Lambda function | | **Update Code** | `updateFunctionCode()` | Deploy new function code | | **Update Config** | `updateFunctionConfiguration()` | Modify settings (timeout, memory, env vars) | | **Delete Function** | `deleteFunction()` | Remove Lambda function | ## Instructions ### 1. Add Dependencies Include Lambda SDK dependency in `pom.xml`: ```xml <dependency> <groupId>software.amazon.awssdk</

What's inside
Steps it walks through
  1. Overview
  2. When to Use
  3. Quick Reference
  4. Instructions
  5. 1. Add Dependencies
  6. 2. Create Client
  7. 3. Invoke Lambda Function
  8. 4. Handle Responses
  9. 5. Manage Functions
  10. 6. Configure Environment
  11. 7. Integrate with Spring Boot
  12. 8. Test Locally
  13. Examples
  14. Basic Invocation
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the aws-sdk-java-v2-lambda skill do?

Provides AWS Lambda patterns using AWS SDK for Java 2.x. Use when invoking Lambda functions, creating/updating functions, managing function configurations, working with Lambda layers, or integrating Lambda with Spring Boot applications.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill aws-sdk-java-v2-lambda --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going