Skip to content

Commit

Permalink
fix(ec2): fix VPC endpoint name for SageMaker Notebooks (#2598)
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswessells authored and rix0rrr committed May 21, 2019
1 parent 99e173e commit aec8ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-ec2/lib/vpc-endpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export interface IInterfaceVpcEndpointService {
* An AWS service for an interface VPC endpoint.
*/
export class InterfaceVpcEndpointAwsService implements IInterfaceVpcEndpointService {
public static readonly SageMakerNotebook = new InterfaceVpcEndpointAwsService('sagemaker', 'aws.sagemaker');
public static readonly SageMakerNotebook = new InterfaceVpcEndpointAwsService('notebook', 'aws.sagemaker');
public static readonly CloudFormation = new InterfaceVpcEndpointAwsService('cloudformation');
public static readonly CloudTrail = new InterfaceVpcEndpointAwsService('cloudtrail');
public static readonly CodeBuild = new InterfaceVpcEndpointAwsService('codebuild');
Expand Down

0 comments on commit aec8ec2

Please sign in to comment.