Skip to content

Commit b1165e4

Browse files
authored
chore(enum-updater): exclude none enum value for appsync AppSyncDataSourceType enum (aws#34409)
### Reason for this change `NONE` should not be a supported enum value in CDK ### Description of changes Exclude`NONE` enum value for appsync `AppSyncDataSourceType` enum ### 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 c50cb87 commit b1165e4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tools/@aws-cdk/enum-updater/lib/exclude-values.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"appsync": {
3+
"AppSyncDataSourceType": {
4+
"values": ["NONE"],
5+
"comment": "NONE is not supported"
6+
}
7+
},
28
"codebuild": {
39
"FleetComputeType": {
410
"comment": "They values are already defined in a different place"

0 commit comments

Comments
 (0)