amazonka-ec2-1.6.1: Amazon Elastic Compute Cloud SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.EC2.CreateDHCPOptions

Contents

Description

Creates a set of DHCP options for your VPC. After creating the set, you must associate it with the VPC, causing all existing and new instances that you launch in the VPC to use this set of DHCP options. The following are the individual DHCP options you can specify. For more information about the options, see RFC 2132 .

  • domain-name-servers - The IP addresses of up to four domain name servers, or AmazonProvidedDNS. The default DHCP option set specifies AmazonProvidedDNS. If specifying more than one domain name server, specify the IP addresses in a single parameter, separated by commas. If you want your instance to receive a custom DNS hostname as specified in domain-name , you must set domain-name-servers to a custom DNS server.
  • domain-name - If you're using AmazonProvidedDNS in us-east-1 , specify ec2.internal . If you're using AmazonProvidedDNS in another region, specify region.compute.internal (for example, ap-northeast-1.compute.internal ). Otherwise, specify a domain name (for example, MyCompany.com ). This value is used to complete unqualified DNS hostnames. Important : Some Linux operating systems accept multiple domain names separated by spaces. However, Windows and other Linux operating systems treat the value as a single domain, which results in unexpected behavior. If your DHCP options set is associated with a VPC that has instances with multiple operating systems, specify only one domain name.
  • ntp-servers - The IP addresses of up to four Network Time Protocol (NTP) servers.
  • netbios-name-servers - The IP addresses of up to four NetBIOS name servers.
  • netbios-node-type - The NetBIOS node type (1, 2, 4, or 8). We recommend that you specify 2 (broadcast and multicast are not currently supported). For more information about these node types, see RFC 2132 .

Your VPC automatically starts out with a set of DHCP options that includes only a DNS server that we provide (AmazonProvidedDNS). If you create a set of options, and if your VPC has an Internet gateway, make sure to set the domain-name-servers option either to AmazonProvidedDNS or to a domain name server of your choice. For more information about DHCP options, see DHCP Options Sets in the Amazon Virtual Private Cloud User Guide .

Synopsis

Creating a Request

createDHCPOptions :: CreateDHCPOptions Source #

Creates a value of CreateDHCPOptions with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • cdoDryRun - Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation . Otherwise, it is UnauthorizedOperation .
  • cdoDHCPConfigurations - A DHCP configuration option.

data CreateDHCPOptions Source #

Contains the parameters for CreateDhcpOptions.

See: createDHCPOptions smart constructor.

Instances
Eq CreateDHCPOptions Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

Data CreateDHCPOptions Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CreateDHCPOptions -> c CreateDHCPOptions #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c CreateDHCPOptions #

toConstr :: CreateDHCPOptions -> Constr #

dataTypeOf :: CreateDHCPOptions -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c CreateDHCPOptions) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c CreateDHCPOptions) #

gmapT :: (forall b. Data b => b -> b) -> CreateDHCPOptions -> CreateDHCPOptions #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CreateDHCPOptions -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CreateDHCPOptions -> r #

gmapQ :: (forall d. Data d => d -> u) -> CreateDHCPOptions -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> CreateDHCPOptions -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> CreateDHCPOptions -> m CreateDHCPOptions #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CreateDHCPOptions -> m CreateDHCPOptions #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CreateDHCPOptions -> m CreateDHCPOptions #

Read CreateDHCPOptions Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

Show CreateDHCPOptions Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

Generic CreateDHCPOptions Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

Associated Types

type Rep CreateDHCPOptions :: Type -> Type #

Hashable CreateDHCPOptions Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

AWSRequest CreateDHCPOptions Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

Associated Types

type Rs CreateDHCPOptions :: Type #

ToHeaders CreateDHCPOptions Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

ToPath CreateDHCPOptions Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

ToQuery CreateDHCPOptions Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

NFData CreateDHCPOptions Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

Methods

rnf :: CreateDHCPOptions -> () #

type Rep CreateDHCPOptions Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

type Rep CreateDHCPOptions = D1 (MetaData "CreateDHCPOptions" "Network.AWS.EC2.CreateDHCPOptions" "amazonka-ec2-1.6.1-GgG1M0FWcBrE5I5IM2QktE" False) (C1 (MetaCons "CreateDHCPOptions'" PrefixI True) (S1 (MetaSel (Just "_cdoDryRun") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 (MetaSel (Just "_cdoDHCPConfigurations") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 [NewDHCPConfiguration])))
type Rs CreateDHCPOptions Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

Request Lenses

cdoDryRun :: Lens' CreateDHCPOptions (Maybe Bool) Source #

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation . Otherwise, it is UnauthorizedOperation .

Destructuring the Response

createDHCPOptionsResponse Source #

Creates a value of CreateDHCPOptionsResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data CreateDHCPOptionsResponse Source #

Contains the output of CreateDhcpOptions.

See: createDHCPOptionsResponse smart constructor.

Instances
Eq CreateDHCPOptionsResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

Data CreateDHCPOptionsResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CreateDHCPOptionsResponse -> c CreateDHCPOptionsResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c CreateDHCPOptionsResponse #

toConstr :: CreateDHCPOptionsResponse -> Constr #

dataTypeOf :: CreateDHCPOptionsResponse -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c CreateDHCPOptionsResponse) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c CreateDHCPOptionsResponse) #

gmapT :: (forall b. Data b => b -> b) -> CreateDHCPOptionsResponse -> CreateDHCPOptionsResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CreateDHCPOptionsResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CreateDHCPOptionsResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> CreateDHCPOptionsResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> CreateDHCPOptionsResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> CreateDHCPOptionsResponse -> m CreateDHCPOptionsResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CreateDHCPOptionsResponse -> m CreateDHCPOptionsResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CreateDHCPOptionsResponse -> m CreateDHCPOptionsResponse #

Read CreateDHCPOptionsResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

Show CreateDHCPOptionsResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

Generic CreateDHCPOptionsResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

Associated Types

type Rep CreateDHCPOptionsResponse :: Type -> Type #

NFData CreateDHCPOptionsResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

type Rep CreateDHCPOptionsResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateDHCPOptions

type Rep CreateDHCPOptionsResponse = D1 (MetaData "CreateDHCPOptionsResponse" "Network.AWS.EC2.CreateDHCPOptions" "amazonka-ec2-1.6.1-GgG1M0FWcBrE5I5IM2QktE" False) (C1 (MetaCons "CreateDHCPOptionsResponse'" PrefixI True) (S1 (MetaSel (Just "_cdorsDHCPOptions") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe DHCPOptions)) :*: S1 (MetaSel (Just "_cdorsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int)))

Response Lenses