@cdk-construct/aurora 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # @cdk-construct/aurora
2
+
3
+ Aurora PostgreSQL and MySQL constructs for AWS CDK.
4
+
5
+ This package will provide paved-road Aurora patterns with safe defaults,
6
+ environment-aware configuration, and explicit escape hatches for advanced RDS
7
+ options.
8
+
9
+ ## Install
10
+
11
+ ```sh
12
+ npm install @cdk-construct/aurora
13
+ ```
14
+
15
+ ## Status
16
+
17
+ This package is scaffolded for the Aurora decomposition. The first implementation
18
+ will establish the public construct API before the package is published.
package/lib/index.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ export type AuroraEngineFamily = 'aurora-postgresql' | 'aurora-mysql';
2
+ export interface AuroraPackageInfo {
3
+ readonly packageName: '@cdk-construct/aurora';
4
+ readonly supportedEngines: readonly AuroraEngineFamily[];
5
+ }
6
+ export declare const auroraPackageInfo: AuroraPackageInfo;
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,kBAAkB,GAAG,mBAAmB,GAAG,cAAc,CAAC;AAEtE,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CAAC,WAAW,EAAE,uBAAuB,CAAC;IAC9C,QAAQ,CAAC,gBAAgB,EAAE,SAAS,kBAAkB,EAAE,CAAC;CAC1D;AAED,eAAO,MAAM,iBAAiB,EAAE,iBAG/B,CAAC"}
package/lib/index.js ADDED
@@ -0,0 +1,5 @@
1
+ export const auroraPackageInfo = {
2
+ packageName: '@cdk-construct/aurora',
3
+ supportedEngines: ['aurora-postgresql', 'aurora-mysql'],
4
+ };
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBT0EsTUFBTSxDQUFDLE1BQU0saUJBQWlCLEdBQXNCO0lBQ2xELFdBQVcsRUFBRSx1QkFBdUI7SUFDcEMsZ0JBQWdCLEVBQUUsQ0FBQyxtQkFBbUIsRUFBRSxjQUFjLENBQUM7Q0FDeEQsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB0eXBlIEF1cm9yYUVuZ2luZUZhbWlseSA9ICdhdXJvcmEtcG9zdGdyZXNxbCcgfCAnYXVyb3JhLW15c3FsJztcblxuZXhwb3J0IGludGVyZmFjZSBBdXJvcmFQYWNrYWdlSW5mbyB7XG4gIHJlYWRvbmx5IHBhY2thZ2VOYW1lOiAnQGNkay1jb25zdHJ1Y3QvYXVyb3JhJztcbiAgcmVhZG9ubHkgc3VwcG9ydGVkRW5naW5lczogcmVhZG9ubHkgQXVyb3JhRW5naW5lRmFtaWx5W107XG59XG5cbmV4cG9ydCBjb25zdCBhdXJvcmFQYWNrYWdlSW5mbzogQXVyb3JhUGFja2FnZUluZm8gPSB7XG4gIHBhY2thZ2VOYW1lOiAnQGNkay1jb25zdHJ1Y3QvYXVyb3JhJyxcbiAgc3VwcG9ydGVkRW5naW5lczogWydhdXJvcmEtcG9zdGdyZXNxbCcsICdhdXJvcmEtbXlzcWwnXSxcbn07XG4iXX0=
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@cdk-construct/aurora",
3
+ "version": "0.0.0",
4
+ "description": "Aurora PostgreSQL and MySQL constructs for AWS CDK",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/crmagz/cdk-construct-library.git",
8
+ "directory": "packages/aurora"
9
+ },
10
+ "author": {
11
+ "name": "crmagz",
12
+ "email": "33166233+crmagz@users.noreply.github.com"
13
+ },
14
+ "license": "Apache-2.0",
15
+ "type": "module",
16
+ "main": "lib/index.js",
17
+ "types": "lib/index.d.ts",
18
+ "exports": {
19
+ ".": {
20
+ "types": "./lib/index.d.ts",
21
+ "import": "./lib/index.js"
22
+ }
23
+ },
24
+ "files": [
25
+ "lib",
26
+ "README.md"
27
+ ],
28
+ "sideEffects": false,
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "scripts": {
33
+ "build": "tsc -p tsconfig.json",
34
+ "clean": "rm -rf lib tsconfig.tsbuildinfo",
35
+ "package": "npm pack --pack-destination ../../dist/js"
36
+ },
37
+ "peerDependencies": {
38
+ "aws-cdk-lib": "^2.236.0",
39
+ "constructs": "^10.4.0"
40
+ },
41
+ "devDependencies": {
42
+ "aws-cdk-lib": "2.236.0",
43
+ "constructs": "10.4.0"
44
+ },
45
+ "keywords": [
46
+ "aws-cdk",
47
+ "cdk",
48
+ "constructs",
49
+ "aurora",
50
+ "rds",
51
+ "typescript",
52
+ "esm"
53
+ ],
54
+ "engines": {
55
+ "node": ">= 20.0.0"
56
+ },
57
+ "packageManager": "npm@11.16.0",
58
+ "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
59
+ }