@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
12 lines (11 loc) • 520 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value, List } from "../../data-types";
export interface VPCEndpointConnectionNotificationProperties {
ConnectionEvents: List<Value<string>>;
VPCEndpointId?: Value<string>;
ServiceId?: Value<string>;
ConnectionNotificationArn: Value<string>;
}
export default class Inner_VPCEndpointConnectionNotification extends ResourceBase<VPCEndpointConnectionNotificationProperties> {
constructor(properties: VPCEndpointConnectionNotificationProperties);
}