UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

9 lines (8 loc) 356 B
import { ResourceBase, ResourceTag as Inner_ResourceTag } from "../../resource"; import { List } from "../../data-types"; export interface InternetGatewayProperties { Tags?: List<Inner_ResourceTag>; } export default class Inner_InternetGateway extends ResourceBase<InternetGatewayProperties> { constructor(properties: InternetGatewayProperties); }