UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

35 lines (34 loc) 1.36 kB
import { CfnResource, Resolvable } from '../../base'; export declare type VPNGateway_Type = 'AWS::EC2::VPNGateway'; export declare const VPNGateway_Type = "AWS::EC2::VPNGateway"; /** * Resource Type definition for AWS::EC2::VPNGateway {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html} */ export default function VPNGateway(props: VPNGateway_Properties): CfnResource<VPNGateway_Properties>; /** * Resource Type definition for AWS::EC2::VPNGateway {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html} */ export declare type VPNGateway_Properties = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-type} */ Type: Resolvable<string>; Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-amazonsideasn} */ AmazonSideAsn?: Resolvable<number>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpn-gateway.html#cfn-ec2-vpngateway-tags} */ Tags?: Tag[]; }; export declare type Tag = { Value: Resolvable<string>; Key: Resolvable<string>; };