Skip to content

Commit f49471b

Browse files
authored
chore: exclude some EC2 enum values (#34194)
### Issue # (if applicable) 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 9cda5ff commit f49471b

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

tools/@aws-cdk/enum-updater/lib/exclude_values.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,19 @@
7676
"DataResourceType": {
7777
"comment": "New DataResourceType need further change. Backfilling enum is not enough"
7878
}
79+
},
80+
"ec2": {
81+
"VpcEndpointIpAddressType": {
82+
"values": ["NOT_SPECIFIED"],
83+
"comment": "Although NOT_SPECIFIED is a valid value, but for CDK customers can just not provide the value for that property"
84+
},
85+
"VpcEndpointDnsRecordIpType": {
86+
"values": ["NOT_SPECIFIED"],
87+
"comment": "Although NOT_SPECIFIED is a valid value, but for CDK customers can just not provide the value for that property"
88+
},
89+
"VpcEndpointPrivateDnsOnlyForInboundResolverEndpoint": {
90+
"values": ["NOTSPECIFIED"],
91+
"comment": "Although NOTSPECIFIED is a valid value, but for CDK customers can just not provide the value for that property"
92+
}
7993
}
80-
}
94+
}

0 commit comments

Comments
 (0)