UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

32 lines (31 loc) 1.54 kB
import { CfnResource, Resolvable } from '../../base'; export declare type LocalGatewayRoute_Type = 'AWS::EC2::LocalGatewayRoute'; export declare const LocalGatewayRoute_Type = "AWS::EC2::LocalGatewayRoute"; /** * Describes a route for a local gateway route table. {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html} */ export default function LocalGatewayRoute(props: LocalGatewayRoute_Properties): CfnResource<LocalGatewayRoute_Properties>; /** * Describes a route for a local gateway route table. {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html} */ export declare type LocalGatewayRoute_Properties = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock} */ DestinationCidrBlock: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid} */ LocalGatewayRouteTableId: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid} */ LocalGatewayVirtualInterfaceGroupId: Resolvable<string>; State?: Resolvable<string>; Type?: Resolvable<string>; };