Skip to content

Commit

Permalink
fixed README
Browse files Browse the repository at this point in the history
  • Loading branch information
lpizzinidev committed Jan 27, 2024
1 parent 65e3819 commit 9f589c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-docdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ const cluster = new docdb.DatabaseCluster(this, 'Database', {
subnetType: ec2.SubnetType.PUBLIC,
},
vpc,
removalPolicy: cdk.RemovalPolicy.SNAPSHOT,
removalPolicy: RemovalPolicy.SNAPSHOT,
});
```

Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/rosetta/aws_docdb/default.ts-fixture
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Fixture with packages imported, but nothing else
import { Stack } from 'aws-cdk-lib';
import { RemovalPolicy, Stack } from 'aws-cdk-lib';
import { Construct } from 'constructs';
import * as docdb from 'aws-cdk-lib/aws-docdb';
import * as ec2 from 'aws-cdk-lib/aws-ec2';
Expand Down

0 comments on commit 9f589c4

Please sign in to comment.