Skip to content

Commit

Permalink
fix: readme
Browse files Browse the repository at this point in the history
  • Loading branch information
badmintoncryer committed Dec 16, 2023
1 parent 71863ff commit ab5c377
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-ses/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Use the `DedicatedIpPool` construct to create a pool of dedicated IP addresses:

```ts
new ses.DedicatedIpPool(this, 'Pool', {
scailingMode: ses.ScalingMode.STANDARD,
scalingMode: ses.ScalingMode.STANDARD,
});
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ test('default dedicated IP pool', () => {

Template.fromStack(stack).hasResourceProperties('AWS::SES::DedicatedIpPool', {
PoolName: Match.absent(),
ScalingMode: 'STANDARD',
});
});

Expand Down

0 comments on commit ab5c377

Please sign in to comment.