typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
25 lines (24 loc) • 1.04 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type InternetGateway_Type = 'AWS::EC2::InternetGateway';
export declare const InternetGateway_Type = "AWS::EC2::InternetGateway";
/**
* Resource Type definition for AWS::EC2::InternetGateway {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html}
*/
export default function InternetGateway(props: InternetGateway_Properties): CfnResource<InternetGateway_Properties>;
/**
* Resource Type definition for AWS::EC2::InternetGateway {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html}
*/
export declare type InternetGateway_Properties = {
InternetGatewayId?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html#cfn-ec2-internetgateway-tags}
*/
Tags?: Tag[];
};
export declare type Tag = {
Key: Resolvable<string>;
Value: Resolvable<string>;
};