Documentation
¶
Overview ¶
Package rds implements the AWS RDS query-protocol as a server.Handler. Point the real aws-sdk-go-v2 RDS client at a Server registered with this handler and DBInstance/DBCluster/DBSnapshot operations work against an in-memory relationaldb driver.
RDS shares the AWS query wire shape with EC2 (POST + form-encoded body, XML response). To keep dispatch unambiguous, this handler's Matches predicate parses the form body once and only claims requests whose Action is one of the known RDS operations. The EC2 handler is the catch-all for all other query-protocol actions and so this handler MUST register first.
Index ¶
Constants ¶
const Namespace = "http://rds.amazonaws.com/doc/2014-10-31/"
Namespace is the XML namespace for AWS RDS responses.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler struct {
// contains filtered or unexported fields
}
Handler serves RDS query-protocol requests.