@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
16 lines (15 loc) • 574 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value, List, MapOf } from "../../data-types";
export interface VPCEndpointProperties {
PolicyDocument?: MapOf<any>;
PrivateDnsEnabled?: Value<boolean>;
RouteTableIds?: List<Value<string>>;
SecurityGroupIds?: List<Value<string>>;
ServiceName: Value<string>;
SubnetIds?: List<Value<string>>;
VpcEndpointType?: Value<string>;
VpcId: Value<string>;
}
export default class Inner_VPCEndpoint extends ResourceBase<VPCEndpointProperties> {
constructor(properties: VPCEndpointProperties);
}