amazonka-elb-1.4.3: Amazon Elastic Load Balancing SDK.

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

Network.AWS.ELB.RegisterInstancesWithLoadBalancer

Contents

Description

Adds the specified instances to the specified load balancer.

The instance must be a running instance in the same network as the load balancer (EC2-Classic or the same VPC). If you have EC2-Classic instances and a load balancer in a VPC with ClassicLink enabled, you can link the EC2-Classic instances to that VPC and then register the linked EC2-Classic instances with the load balancer in the VPC.

Note that RegisterInstanceWithLoadBalancer completes when the request has been registered. Instance registration takes a little time to complete. To check the state of the registered instances, use DescribeLoadBalancers or DescribeInstanceHealth.

After the instance is registered, it starts receiving traffic and requests from the load balancer. Any instance that is not in one of the Availability Zones registered for the load balancer is moved to the OutOfService state. If an Availability Zone is added to the load balancer later, any instances registered with the load balancer move to the InService state.

If you stop an instance registered with a load balancer and then start it, the IP addresses associated with the instance changes. Elastic Load Balancing cannot recognize the new IP address, which prevents it from routing traffic to the instances. We recommend that you use the following sequence: stop the instance, deregister the instance, start the instance, and then register the instance. To deregister instances from a load balancer, use DeregisterInstancesFromLoadBalancer.

For more information, see Deregister and Register EC2 Instances in the Elastic Load Balancing Developer Guide.

Synopsis

Creating a Request

registerInstancesWithLoadBalancer Source #

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

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

data RegisterInstancesWithLoadBalancer Source #

See: registerInstancesWithLoadBalancer smart constructor.

Instances

Eq RegisterInstancesWithLoadBalancer Source # 
Data RegisterInstancesWithLoadBalancer Source # 

Methods

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

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

toConstr :: RegisterInstancesWithLoadBalancer -> Constr #

dataTypeOf :: RegisterInstancesWithLoadBalancer -> DataType #

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

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

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

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

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

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

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

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

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

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

Read RegisterInstancesWithLoadBalancer Source # 
Show RegisterInstancesWithLoadBalancer Source # 
Generic RegisterInstancesWithLoadBalancer Source # 
Hashable RegisterInstancesWithLoadBalancer Source # 
NFData RegisterInstancesWithLoadBalancer Source # 
AWSRequest RegisterInstancesWithLoadBalancer Source # 
ToQuery RegisterInstancesWithLoadBalancer Source # 
ToPath RegisterInstancesWithLoadBalancer Source # 
ToHeaders RegisterInstancesWithLoadBalancer Source # 
type Rep RegisterInstancesWithLoadBalancer Source # 
type Rep RegisterInstancesWithLoadBalancer = D1 (MetaData "RegisterInstancesWithLoadBalancer" "Network.AWS.ELB.RegisterInstancesWithLoadBalancer" "amazonka-elb-1.4.3-6wINoQT12eC34de0iF28rP" False) (C1 (MetaCons "RegisterInstancesWithLoadBalancer'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_riwlbLoadBalancerName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_riwlbInstances") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 [Instance]))))
type Rs RegisterInstancesWithLoadBalancer Source # 

Request Lenses

Destructuring the Response

registerInstancesWithLoadBalancerResponse Source #

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

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

data RegisterInstancesWithLoadBalancerResponse Source #

Instances

Eq RegisterInstancesWithLoadBalancerResponse Source # 
Data RegisterInstancesWithLoadBalancerResponse Source # 

Methods

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

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

toConstr :: RegisterInstancesWithLoadBalancerResponse -> Constr #

dataTypeOf :: RegisterInstancesWithLoadBalancerResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read RegisterInstancesWithLoadBalancerResponse Source # 
Show RegisterInstancesWithLoadBalancerResponse Source # 
Generic RegisterInstancesWithLoadBalancerResponse Source # 
NFData RegisterInstancesWithLoadBalancerResponse Source # 
type Rep RegisterInstancesWithLoadBalancerResponse Source # 
type Rep RegisterInstancesWithLoadBalancerResponse = D1 (MetaData "RegisterInstancesWithLoadBalancerResponse" "Network.AWS.ELB.RegisterInstancesWithLoadBalancer" "amazonka-elb-1.4.3-6wINoQT12eC34de0iF28rP" False) (C1 (MetaCons "RegisterInstancesWithLoadBalancerResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_riwlbrsInstances") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Instance]))) (S1 (MetaSel (Just Symbol "_riwlbrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int))))

Response Lenses

riwlbrsInstances :: Lens' RegisterInstancesWithLoadBalancerResponse [Instance] Source #

The updated list of instances for the load balancer.