typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
41 lines (40 loc) • 1.47 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type EIP_Type = 'AWS::EC2::EIP';
export declare const EIP_Type = "AWS::EC2::EIP";
/**
* Resource Type definition for AWS::EC2::EIP {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html}
*/
export default function EIP(props: EIP_Properties): CfnResource<EIP_Properties>;
/**
* Resource Type definition for AWS::EC2::EIP {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html}
*/
export declare type EIP_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-publicipv4pool}
*/
PublicIpv4Pool?: Resolvable<string>;
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-domain}
*/
Domain?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-instanceid}
*/
InstanceId?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html#cfn-ec2-eip-tags}
*/
Tags?: Tag[];
AllocationId?: Resolvable<string>;
};
export declare type Tag = {
Value: Resolvable<string>;
Key: Resolvable<string>;
};