Skip to content

Commit

Permalink
chore(config): private constructor for managed rule identifiers class (
Browse files Browse the repository at this point in the history
…#10859)

lost this change unintentionally during a merge.

introducing it so there isn't a default constructor as this class is not
intended to be instantiated.


----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
shivlaks authored Oct 14, 2020
1 parent bfba258 commit 3361e5d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/@aws-cdk/aws-config/lib/rule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1259,6 +1259,9 @@ export class ManagedRuleIdentifiers {
* @see https://docs.aws.amazon.com/config/latest/developerguide/wafv2-logging-enabled.html
*/
public static readonly WAFV2_LOGGING_ENABLED = 'WAFV2_LOGGING_ENABLED';

// utility class
private constructor() { }
}

/**
Expand Down

0 comments on commit 3361e5d

Please sign in to comment.