UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

50 lines (49 loc) 2.04 kB
import { CfnResource, Resolvable } from '../../base'; export declare type DHCPOptions_Type = 'AWS::EC2::DHCPOptions'; export declare const DHCPOptions_Type = "AWS::EC2::DHCPOptions"; /** * Resource Type definition for AWS::EC2::DHCPOptions {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcpoptions.html} */ export default function DHCPOptions(props: DHCPOptions_Properties): CfnResource<DHCPOptions_Properties>; /** * Resource Type definition for AWS::EC2::DHCPOptions {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcpoptions.html} */ export declare type DHCPOptions_Properties = { DhcpOptionsId?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcpoptions.html#cfn-ec2-dhcpoptions-domainname} */ DomainName?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcpoptions.html#cfn-ec2-dhcpoptions-domainnameservers} */ DomainNameServers?: Resolvable<string>[]; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcpoptions.html#cfn-ec2-dhcpoptions-netbiosnameservers} */ NetbiosNameServers?: Resolvable<string>[]; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcpoptions.html#cfn-ec2-dhcpoptions-netbiosnodetype} */ NetbiosNodeType?: Resolvable<number>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcpoptions.html#cfn-ec2-dhcpoptions-ntpservers} */ NtpServers?: Resolvable<string>[]; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcpoptions.html#cfn-ec2-dhcpoptions-tags} */ Tags?: Tag[]; }; export declare type Tag = { Key: Resolvable<string>; Value: Resolvable<string>; };