UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

28 lines (27 loc) 1.33 kB
import { CfnResource, Resolvable } from '../../base'; export declare type VPNGatewayRoutePropagation_Type = 'AWS::EC2::VPNGatewayRoutePropagation'; export declare const VPNGatewayRoutePropagation_Type = "AWS::EC2::VPNGatewayRoutePropagation"; /** * Resource Type definition for AWS::EC2::VPNGatewayRoutePropagation * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html} */ export default function VPNGatewayRoutePropagation(props: VPNGatewayRoutePropagation_Properties): CfnResource<VPNGatewayRoutePropagation_Properties>; /** * Resource Type definition for AWS::EC2::VPNGatewayRoutePropagation * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html} */ export declare type VPNGatewayRoutePropagation_Properties = { Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-routetableids} */ RouteTableIds: Resolvable<string>[]; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gatewayrouteprop.html#cfn-ec2-vpngatewayrouteprop-vpngatewayid} */ VpnGatewayId: Resolvable<string>; };