Skip to content

Commit 2d255ea

Browse files
chore(ec2): add kafka interface vpc endpoints (#31565)
### Issue # (if applicable) None ### Reason for this change AWS Kafka now supports private link access. ### Description of changes Add `kafka` and `kafka-fips` interface vpc endpoints. ### Description of how you validated changes I confirmed from the result of AWS CLI. ```sh $ aws ec2 describe-vpc-endpoint-services --filters Name=service-type,Values=Interface Name=owner,Values=amazon --region us-east-1 --query ServiceNames "com.amazonaws.us-east-1.kafka", "com.amazonaws.us-east-1.kafka-fips", ``` ### 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 fc09bc1 commit 2d255ea

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: packages/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.ts

+2
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,8 @@ export class InterfaceVpcEndpointAwsService implements IInterfaceVpcEndpointServ
450450
public static readonly IOT_SITEWISE_DATA = new InterfaceVpcEndpointAwsService('iotsitewise.data');
451451
public static readonly IOT_TWINMAKER_API = new InterfaceVpcEndpointAwsService('iottwinmaker.api');
452452
public static readonly IOT_TWINMAKER_DATA = new InterfaceVpcEndpointAwsService('iottwinmaker.data');
453+
public static readonly KAFKA = new InterfaceVpcEndpointAwsService('kafka');
454+
public static readonly KAFKA_FIPS = new InterfaceVpcEndpointAwsService('kafka-fips');
453455
public static readonly KENDRA = new InterfaceVpcEndpointAwsService('kendra');
454456
public static readonly KENDRA_RANKING = new InterfaceVpcEndpointAwsService('kendra-ranking', 'aws.api');
455457
public static readonly KEYSPACES = new InterfaceVpcEndpointAwsService('cassandra', '', 9142);

0 commit comments

Comments
 (0)