UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

23 lines (22 loc) 1.1 kB
import { CfnResource, Resolvable } from '../../base'; export declare type EgressOnlyInternetGateway_Type = 'AWS::EC2::EgressOnlyInternetGateway'; export declare const EgressOnlyInternetGateway_Type = "AWS::EC2::EgressOnlyInternetGateway"; /** * Resource Type definition for AWS::EC2::EgressOnlyInternetGateway * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html} */ export default function EgressOnlyInternetGateway(props: EgressOnlyInternetGateway_Properties): CfnResource<EgressOnlyInternetGateway_Properties>; /** * Resource Type definition for AWS::EC2::EgressOnlyInternetGateway * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html} */ export declare type EgressOnlyInternetGateway_Properties = { Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid} */ VpcId: Resolvable<string>; };