typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
31 lines (30 loc) • 1.49 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type VPCGatewayAttachment_Type = 'AWS::EC2::VPCGatewayAttachment';
export declare const VPCGatewayAttachment_Type = "AWS::EC2::VPCGatewayAttachment";
/**
* Resource Type definition for AWS::EC2::VPCGatewayAttachment {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html}
*/
export default function VPCGatewayAttachment(props: VPCGatewayAttachment_Properties): CfnResource<VPCGatewayAttachment_Properties>;
/**
* Resource Type definition for AWS::EC2::VPCGatewayAttachment {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html}
*/
export declare type VPCGatewayAttachment_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-internetgatewayid}
*/
InternetGatewayId?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpcid}
*/
VpcId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html#cfn-ec2-vpcgatewayattachment-vpngatewayid}
*/
VpnGatewayId?: Resolvable<string>;
};