Skip to content

Commit

Permalink
docs(ses): corrected default value as true for ConfigurationSet.reput…
Browse files Browse the repository at this point in the history
…ationMetrics property (aws#30979)

### Issue # (if applicable)

Closes aws#30968.

### Reason for this change
The default value of `ConfigurationSet.reputationMetrics` if not set in the CDK stack is actually `true` (refer aws#30968 (comment) for details).

### Description of changes
Corrected default value as `true` for `ConfigurationSet.reputationMetrics` property in documentation comment.

### Description of how you validated changes
N/A

### Checklist
- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
ashishdhingra authored Jul 30, 2024
1 parent a0bb8e5 commit d60aaa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/aws-cdk-lib/aws-ses/lib/configuration-set.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export interface ConfigurationSetProps {
* Whether to publish reputation metrics for the configuration set, such as
* bounce and complaint rates, to Amazon CloudWatch
*
* @default false
* @default true
*/
readonly reputationMetrics?: boolean;

Expand Down Expand Up @@ -220,4 +220,4 @@ function booleanToEnabledDisabled(value: boolean): 'ENABLED' | 'DISABLED' {
return value === true
? 'ENABLED'
: 'DISABLED';
}
}

0 comments on commit d60aaa0

Please sign in to comment.