Skip to content

Commit 9aa7217

Browse files
authored
chore(ec2): add VPC interface endpoint for Dynamodb Streams (#34483)
### Issue # (if applicable) ### Reason for this change There is no VPC endpoint for [AWS DynamoDB Streams endpoint](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/privatelink-streams.html) so I'm adding it. $ aws ec2 describe-vpc-endpoint-services --filters "Name=service-name,Values=*dynamodb-streams" --region us-east-1 --query "ServiceNames[]" [ "com.amazonaws.us-east-1.dynamodb-streams" ] ### Description of changes ### Describe any new or updated permissions being added ### Description of how you validated changes ### 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 92ad68a commit 9aa7217

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -480,6 +480,7 @@ export class InterfaceVpcEndpointAwsService implements IInterfaceVpcEndpointServ
480480
public static readonly DIRECTORY_SERVICE_DATA = new InterfaceVpcEndpointAwsService('ds-data');
481481
public static readonly DYNAMODB = new InterfaceVpcEndpointAwsService('dynamodb');
482482
public static readonly DYNAMODB_FIPS = new InterfaceVpcEndpointAwsService('dynamodb-fips');
483+
public static readonly DYNAMODB_STREAMS = new InterfaceVpcEndpointAwsService('dynamodb-streams');
483484
public static readonly EBS_DIRECT = new InterfaceVpcEndpointAwsService('ebs');
484485
public static readonly EC2 = new InterfaceVpcEndpointAwsService('ec2');
485486
public static readonly EC2_MESSAGES = new InterfaceVpcEndpointAwsService('ec2messages');

0 commit comments

Comments
 (0)