@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
18 lines (17 loc) • 636 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface RouteProperties {
RouteTableId: Value<string>;
DestinationIpv6CidrBlock?: Value<string>;
NetworkInterfaceId?: Value<string>;
DestinationCidrBlock?: Value<string>;
TransitGatewayId?: Value<string>;
VpcPeeringConnectionId?: Value<string>;
InstanceId?: Value<string>;
EgressOnlyInternetGatewayId?: Value<string>;
NatGatewayId?: Value<string>;
GatewayId?: Value<string>;
}
export default class Inner_Route extends ResourceBase<RouteProperties> {
constructor(properties: RouteProperties);
}