Agent skill · DevOps & Cloud

aws-sdk-java-v2-rds

AWS RDS (Relational Database Service) management using AWS SDK for Java 2.x. Use when creating, modifying, monitoring, or managing Amazon RDS database instances, snapshots, parameter groups, and configurations.

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 12 KB
Bundled scripts: none
Version: 1.1.0
Allowed tools: ReadWriteBash
Path: skills/api/aws-sdk-java-v2-rds/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 v2 - RDS Management This skill provides comprehensive guidance for working with Amazon RDS (Relational Database Service) using the AWS SDK for Java 2.x, covering database instance management, snapshots, parameter groups, and RDS operations. ## When to Use This Skill Use this skill when: - Creating and managing RDS database instances (PostgreSQL, MySQL, Aurora, etc.) - Taking and restoring database snapshots - Managing DB parameter groups and configurations - Querying RDS instance metadata and status - Setting up Multi-AZ deployments - Configuring automated backups - Managing security groups for RDS - Connecting Lambda functions to RDS databases - Implementing RDS IAM authentication - Monitoring RDS instances and metrics ## Getting Started ### RDS Client Setup The `RdsClient` is the main entry point for interacting with Amazon RDS. **Basic Client Creation:** ```java import software.amazon.awssdk.regions.Region; import software.amazon.awssdk.services.rds.RdsClient; RdsClient rdsClient = RdsClient.builder() .region(Region.US_EAST_1) .build(); // Use client describeInstances(rdsClient); // Always close the client rdsClient.close(); ``` **Client with Custom Configurat

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Getting Started
  3. RDS Client Setup
  4. Describing DB Instances
  5. Key Operations
  6. Creating DB Instances
  7. Managing DB Parameter Groups
  8. Managing DB Snapshots
  9. Integration Patterns
  10. Spring Boot Integration
  11. Lambda Integration
  12. Advanced Operations
  13. Modifying DB Instances
  14. Deleting DB Instances
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the aws-sdk-java-v2-rds skill do?

AWS RDS (Relational Database Service) management using AWS SDK for Java 2.x. Use when creating, modifying, monitoring, or managing Amazon RDS database instances, snapshots, parameter groups, and configurations.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill aws-sdk-java-v2-rds --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