UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

12 lines (11 loc) 445 B
import { ResourceBase, ResourceTag as Inner_ResourceTag } from "../../resource"; import { Value, List } from "../../data-types"; export interface CustomerGatewayProperties { BgpAsn: Value<number>; IpAddress: Value<string>; Tags?: List<Inner_ResourceTag>; Type: Value<string>; } export default class Inner_CustomerGateway extends ResourceBase<CustomerGatewayProperties> { constructor(properties: CustomerGatewayProperties); }