Skip to content

Commit f418c5d

Browse files
authored
chore(ec2): add VPC interface endpoints for Bedrock Data Automation (#33674)
### Issue # (if applicable) ### Reason for this change There are no VPC endpoints for Amazon Bedrock Data Automation so I added. Ref: https://aws.amazon.com/about-aws/whats-new/2024/12/amazon-bedrock-data-automation-available-preview/ ```bash % aws ec2 describe-vpc-endpoint-services --filters "Name=service-name,Values=*data-automation*" --region us-east-1 --query "ServiceNames[]" [ "com.amazonaws.us-east-1.bedrock-data-automation", "com.amazonaws.us-east-1.bedrock-data-automation-fips", "com.amazonaws.us-east-1.bedrock-data-automation-runtime", "com.amazonaws.us-east-1.bedrock-data-automation-runtime-fips" ] ``` ### 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 97744e7 commit f418c5d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

+4
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,10 @@ export class InterfaceVpcEndpointAwsService implements IInterfaceVpcEndpointServ
308308
public static readonly BEDROCK_AGENT = new InterfaceVpcEndpointAwsService('bedrock-agent');
309309
public static readonly BEDROCK_AGENT_RUNTIME = new InterfaceVpcEndpointAwsService('bedrock-agent-runtime');
310310
public static readonly BEDROCK_RUNTIME = new InterfaceVpcEndpointAwsService('bedrock-runtime');
311+
public static readonly BEDROCK_DATA_AUTOMATION = new InterfaceVpcEndpointAwsService('bedrock-data-automation');
312+
public static readonly BEDROCK_DATA_AUTOMATION_FIPS = new InterfaceVpcEndpointAwsService('bedrock-data-automation-fips');
313+
public static readonly BEDROCK_DATA_AUTOMATION_RUNTIME = new InterfaceVpcEndpointAwsService('bedrock-data-automation-runtime');
314+
public static readonly BEDROCK_DATA_AUTOMATION_RUNTIME_FIPS = new InterfaceVpcEndpointAwsService('bedrock-data-automation-runtime-fips');
311315
public static readonly BILLING = new InterfaceVpcEndpointAwsService('billing');
312316
public static readonly BILLING_AND_COST_MANAGEMENT_FREETIER = new InterfaceVpcEndpointAwsService('freetier', 'aws.api');
313317
public static readonly BILLING_AND_COST_MANAGEMENT_TAX = new InterfaceVpcEndpointAwsService('tax');

0 commit comments

Comments
 (0)