@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
10 lines (9 loc) • 396 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value, List } from "../../data-types";
export interface VPCEndpointServiceProperties {
NetworkLoadBalancerArns: List<Value<string>>;
AcceptanceRequired?: Value<boolean>;
}
export default class Inner_VPCEndpointService extends ResourceBase<VPCEndpointServiceProperties> {
constructor(properties: VPCEndpointServiceProperties);
}