/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource Type definition for AWS::EC2::DHCPOptions */ export interface AwsEc2Dhcpoptions { DhcpOptionsId?: string; /** * This value is used to complete unqualified DNS hostnames. */ DomainName?: string; /** * The IPv4 addresses of up to four domain name servers, or AmazonProvidedDNS. */ DomainNameServers?: string[]; /** * The IPv4 addresses of up to four NetBIOS name servers. */ NetbiosNameServers?: string[]; /** * The NetBIOS node type (1, 2, 4, or 8). */ NetbiosNodeType?: number; /** * The IPv4 addresses of up to four Network Time Protocol (NTP) servers. */ NtpServers?: string[]; /** * Any tags assigned to the DHCP options set. */ Tags?: Tag[]; } export interface Tag { Key: string; Value: string; }