UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

16 lines (15 loc) 630 B
import { ResourceBase, ResourceTag as Inner_ResourceTag } from "../../resource"; import { Value, List } from "../../data-types"; export declare class Tags { Tags?: List<Inner_ResourceTag>; constructor(properties: Tags); } export interface LocalGatewayRouteTableVPCAssociationProperties { LocalGatewayRouteTableId: Value<string>; VpcId: Value<string>; Tags?: Tags; } export default class Inner_LocalGatewayRouteTableVPCAssociation extends ResourceBase<LocalGatewayRouteTableVPCAssociationProperties> { static Tags: typeof Tags; constructor(properties: LocalGatewayRouteTableVPCAssociationProperties); }