Skip to content

Commit

Permalink
<!--Simply copy paste from the PR title and replace the necessary par…
Browse files Browse the repository at this point in the history
…ts-->

chore(config): clear awslint exclusions (#6671)

<!--For every issue your PR resolves, add `fixes #<issue>` or `closes #<issue>`-->

<!--Shout out to collaborators.-->

<!--If your PR includes breaking changes, uncomment and fill in the following (notice how multiple breaking changes should be formatted):-->
<!--
BREAKING CHANGE: Description of what broke and how to achieve this behavior now<br>
\* **module-name:** Another breaking change<br>
\* **module-name:** Yet another breaking change
-->

<!--IMPORTANT: This section cannot contain any additional markdown headers (#)-->
  • Loading branch information
iliapolo authored Mar 11, 2020
1 parent d557592 commit 8e802f4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 10 deletions.
20 changes: 20 additions & 0 deletions packages/@aws-cdk/aws-config/lib/rule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,30 @@ abstract class RuleNew extends RuleBase {
* The maximum frequency at which the AWS Config rule runs evaluations.
*/
export enum MaximumExecutionFrequency {

/**
* 1 hour.
*/
ONE_HOUR = 'One_Hour',

/**
* 3 hours.
*/
THREE_HOURS = 'Three_Hours',

/**
* 6 hours.
*/
SIX_HOURS = 'Six_Hours',

/**
* 12 hours.
*/
TWELVE_HOURS = 'Twelve_Hours',

/**
* 24 hours.
*/
TWENTY_FOUR_HOURS = 'TwentyFour_Hours'
}

Expand Down
11 changes: 1 addition & 10 deletions packages/@aws-cdk/aws-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,5 @@
"engines": {
"node": ">= 10.3.0"
},
"stability": "experimental",
"awslint": {
"exclude": [
"docs-public-apis:@aws-cdk/aws-config.MaximumExecutionFrequency.TWENTY_FOUR_HOURS",
"docs-public-apis:@aws-cdk/aws-config.MaximumExecutionFrequency.ONE_HOUR",
"docs-public-apis:@aws-cdk/aws-config.MaximumExecutionFrequency.THREE_HOURS",
"docs-public-apis:@aws-cdk/aws-config.MaximumExecutionFrequency.SIX_HOURS",
"docs-public-apis:@aws-cdk/aws-config.MaximumExecutionFrequency.TWELVE_HOURS"
]
}
"stability": "experimental"
}

0 comments on commit 8e802f4

Please sign in to comment.