Skip to content

Commit e4f0107

Browse files
committed
fix: yarn build
1 parent 0de849a commit e4f0107

File tree

2 files changed

+53
-11
lines changed

2 files changed

+53
-11
lines changed

API.md

Lines changed: 51 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/rds.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ export interface PostgresProps {
4949
readonly multiAz?: boolean;
5050
readonly allocatedStorage?: number;
5151
readonly maxAllocatedStorage?: number;
52-
readonly replicaAllocatedStorage?: number
53-
readonly replicaMaxAllocatedStorage?: number
52+
readonly replicaAllocatedStorage?: number;
53+
readonly replicaMaxAllocatedStorage?: number;
5454
readonly storageType?: rds.StorageType;
5555
readonly backupRetention?: number;
5656
readonly deletionProtection?: boolean;
@@ -65,7 +65,6 @@ export interface PostgresProps {
6565
readonly storageEncrypted?: boolean;
6666
readonly allowMajorVersionUpgrade?: boolean;
6767
readonly autoMinorVersionUpgrade?: boolean;
68-
readonly dbIOPS?: number;
6968
readonly tags?: Record<string, string>;
7069
readonly enableAlerts?: boolean; // Flag to enable/disable all alerts (default: true)
7170
// Custom alert thresholds
@@ -152,7 +151,6 @@ export class PostgresRDSCluster extends Construct {
152151
StorageType: props.storageType,
153152
allowMajorVersionUpgrade: props.allowMajorVersionUpgrade ?? false,
154153
autoMinorVersionUpgrade: props.autoMinorVersionUpgrade ?? false,
155-
iops: props.dbIOPS,
156154
};
157155
const rdsInstance = props.snapshotIdentifier ? new rds.DatabaseInstanceFromSnapshot(this, `${props.clusterName}Cluster`, {
158156
...commonInstanceProps,

0 commit comments

Comments
 (0)