import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export interface VPCEndpointConnectionNotificationProperties { ConnectionEvents: List>; VPCEndpointId?: Value; ServiceId?: Value; ConnectionNotificationArn: Value; } export default class VPCEndpointConnectionNotification extends ResourceBase { constructor(properties: VPCEndpointConnectionNotificationProperties); }