UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

36 lines (35 loc) 1.4 kB
import { CfnResource, Resolvable } from '../../base'; export declare type Host_Type = 'AWS::EC2::Host'; export declare const Host_Type = "AWS::EC2::Host"; /** * Resource Type definition for AWS::EC2::Host {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html} */ export default function Host(props: Host_Properties): CfnResource<Host_Properties>; /** * Resource Type definition for AWS::EC2::Host {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html} */ export declare type Host_Properties = { Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-autoplacement} */ AutoPlacement?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-availabilityzone} */ AvailabilityZone: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-hostrecovery} */ HostRecovery?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-host.html#cfn-ec2-host-instancetype} */ InstanceType: Resolvable<string>; };