UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

10 lines (9 loc) 461 B
import { ResourceBase } from "../../resource"; import { Value } from "../../data-types"; export interface TransitGatewayRouteTablePropagationProperties { TransitGatewayRouteTableId: Value<string>; TransitGatewayAttachmentId: Value<string>; } export default class Inner_TransitGatewayRouteTablePropagation extends ResourceBase<TransitGatewayRouteTablePropagationProperties> { constructor(properties: TransitGatewayRouteTablePropagationProperties); }