We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9efd9b commit 009c215Copy full SHA for 009c215
lib/database.ts
@@ -16,7 +16,7 @@ export class PgStacDatabase extends Construct {
16
db: rds.DatabaseInstance;
17
pgstacSecret: secretsmanager.ISecret;
18
19
- constructor(scope: Construct, id: string, props: Props) {
+ constructor(scope: Construct, id: string, props: PgStacDatabaseProps) {
20
super(scope, id);
21
22
const parameterGroup = new rds.ParameterGroup(this, "parameterGroup", {
@@ -55,4 +55,4 @@ export class PgStacDatabase extends Construct {
55
}
56
57
58
-export interface Props extends rds.DatabaseInstanceProps {}
+export interface PgStacDatabaseProps extends rds.DatabaseInstanceProps {}
0 commit comments