typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
40 lines (39 loc) • 1.57 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type NatGateway_Type = 'AWS::EC2::NatGateway';
export declare const NatGateway_Type = "AWS::EC2::NatGateway";
/**
* Resource Type definition for AWS::EC2::NatGateway {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html}
*/
export default function NatGateway(props: NatGateway_Properties): CfnResource<NatGateway_Properties>;
/**
* Resource Type definition for AWS::EC2::NatGateway {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html}
*/
export declare type NatGateway_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-subnetid}
*/
SubnetId: Resolvable<string>;
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-connectivitytype}
*/
ConnectivityType?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-tags}
*/
Tags?: Tag[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-allocationid}
*/
AllocationId?: Resolvable<string>;
};
export declare type Tag = {
Value: Resolvable<string>;
Key: Resolvable<string>;
};