UNPKG

@scloud/cdk-patterns

Version:

Serverless CDK patterns for common infrastructure needs

7 lines (6 loc) 379 B
import { InterfaceVpcEndpointAwsService, InterfaceVpcEndpointOptions, IVpc } from 'aws-cdk-lib/aws-ec2'; import { Construct } from 'constructs'; /** * @deprecated Use VpcEndpoint instead */ export declare function privateEndpoint(construct: Construct, name: string, vpc: IVpc, service: InterfaceVpcEndpointAwsService, options?: Partial<InterfaceVpcEndpointOptions>): string[];