Skip to content

Commit d60aaa0

Browse files
docs(ses): corrected default value as true for ConfigurationSet.reputationMetrics property (#30979)
### Issue # (if applicable) Closes #30968. ### Reason for this change The default value of `ConfigurationSet.reputationMetrics` if not set in the CDK stack is actually `true` (refer #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*
1 parent a0bb8e5 commit d60aaa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/aws-cdk-lib/aws-ses/lib/configuration-set.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export interface ConfigurationSetProps {
4747
* Whether to publish reputation metrics for the configuration set, such as
4848
* bounce and complaint rates, to Amazon CloudWatch
4949
*
50-
* @default false
50+
* @default true
5151
*/
5252
readonly reputationMetrics?: boolean;
5353

@@ -220,4 +220,4 @@ function booleanToEnabledDisabled(value: boolean): 'ENABLED' | 'DISABLED' {
220220
return value === true
221221
? 'ENABLED'
222222
: 'DISABLED';
223-
}
223+
}

0 commit comments

Comments
 (0)