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.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- When to Use This Skill
- Getting Started
- RDS Client Setup
- Describing DB Instances
- Key Operations
- Creating DB Instances
- Managing DB Parameter Groups
- Managing DB Snapshots
- Integration Patterns
- Spring Boot Integration
- Lambda Integration
- Advanced Operations
- Modifying DB Instances
- Deleting DB Instances
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.
