Skip to content

Commit 7bbe13e

Browse files
chore(ec2): add new enum values for ec2
1 parent 0438773 commit 7bbe13e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

packages/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,14 @@ export enum VpcEndpointIpAddressType {
118118
* address ranges and the endpoint service accepts both IPv4 and IPv6 requests.
119119
*/
120120
DUALSTACK = 'dualstack',
121+
/**
122+
* PLACEHOLDER_COMMENT_TO_BE_FILLED_OUT
123+
*/
124+
SERVICE_DEFINED = 'service-defined',
125+
/**
126+
* PLACEHOLDER_COMMENT_TO_BE_FILLED_OUT
127+
*/
128+
NOT_SPECIFIED = 'not-specified',
121129
}
122130

123131
/**
@@ -145,6 +153,10 @@ export enum VpcEndpointDnsRecordIpType {
145153
* The IP address type must be Dualstack.
146154
*/
147155
SERVICE_DEFINED = 'service-defined',
156+
/**
157+
* PLACEHOLDER_COMMENT_TO_BE_FILLED_OUT
158+
*/
159+
NOT_SPECIFIED = 'not-specified',
148160
}
149161

150162
/**
@@ -162,6 +174,10 @@ export enum VpcEndpointPrivateDnsOnlyForInboundResolverEndpoint {
162174
* Enable private DNS only for inbound endpoints.
163175
*/
164176
ONLY_INBOUND_RESOLVER = 'OnlyInboundResolver',
177+
/**
178+
* PLACEHOLDER_COMMENT_TO_BE_FILLED_OUT
179+
*/
180+
NOTSPECIFIED = 'NotSpecified',
165181
}
166182

167183
/**

0 commit comments

Comments
 (0)