packages feed

amazonka-elb 1.3.5 → 1.3.6

raw patch · 8 files changed

+24/−18 lines, 8 filesdep ~amazonka-coredep ~amazonka-elbdep ~amazonka-testPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: amazonka-core, amazonka-elb, amazonka-test

API changes (from Hackage documentation)

Files

README.md view
@@ -8,7 +8,7 @@  ## Version -`1.3.5`+`1.3.6`   ## Description
amazonka-elb.cabal view
@@ -1,5 +1,5 @@ name:                  amazonka-elb-version:               1.3.5+version:               1.3.6 synopsis:              Amazon Elastic Load Balancing SDK. homepage:              https://github.com/brendanhay/amazonka bug-reports:           https://github.com/brendanhay/amazonka/issues@@ -93,7 +93,7 @@         , Network.AWS.ELB.Types.Sum      build-depends:-          amazonka-core == 1.3.5.*+          amazonka-core == 1.3.6.*         , base          >= 4.7     && < 5  test-suite amazonka-elb-test@@ -113,9 +113,9 @@         , Test.AWS.ELB.Internal      build-depends:-          amazonka-core == 1.3.5.*-        , amazonka-test == 1.3.5.*-        , amazonka-elb == 1.3.5.*+          amazonka-core == 1.3.6.*+        , amazonka-test == 1.3.6.*+        , amazonka-elb == 1.3.6.*         , base         , bytestring         , lens
gen/Network/AWS/ELB/CreateAppCookieStickinessPolicy.hs view
@@ -92,7 +92,8 @@ cacspLoadBalancerName :: Lens' CreateAppCookieStickinessPolicy Text cacspLoadBalancerName = lens _cacspLoadBalancerName (\ s a -> s{_cacspLoadBalancerName = a}); --- | The name of the policy being created. This name must be unique within+-- | The name of the policy being created. Policy names must consist of+-- alphanumeric characters and dashes (-). This name must be unique within -- the set of policies for this load balancer. cacspPolicyName :: Lens' CreateAppCookieStickinessPolicy Text cacspPolicyName = lens _cacspPolicyName (\ s a -> s{_cacspPolicyName = a});
gen/Network/AWS/ELB/CreateLBCookieStickinessPolicy.hs view
@@ -100,7 +100,8 @@ clbcspLoadBalancerName :: Lens' CreateLBCookieStickinessPolicy Text clbcspLoadBalancerName = lens _clbcspLoadBalancerName (\ s a -> s{_clbcspLoadBalancerName = a}); --- | The name of the policy being created. This name must be unique within+-- | The name of the policy being created. Policy names must consist of+-- alphanumeric characters and dashes (-). This name must be unique within -- the set of policies for this load balancer. clbcspPolicyName :: Lens' CreateLBCookieStickinessPolicy Text clbcspPolicyName = lens _clbcspPolicyName (\ s a -> s{_clbcspPolicyName = a});
gen/Network/AWS/ELB/CreateLoadBalancer.hs view
@@ -149,9 +149,10 @@  -- | The name of the load balancer. ----- This name must be unique within your AWS account, must have a maximum of--- 32 characters, must contain only alphanumeric characters or hyphens, and--- cannot begin or end with a hyphen.+-- This name must be unique within your set of load balancers for the+-- region, must have a maximum of 32 characters, must contain only+-- alphanumeric characters or hyphens, and cannot begin or end with a+-- hyphen. clbLoadBalancerName :: Lens' CreateLoadBalancer Text clbLoadBalancerName = lens _clbLoadBalancerName (\ s a -> s{_clbLoadBalancerName = a}); 
gen/Network/AWS/ELB/DescribeInstanceHealth.hs view
@@ -18,10 +18,12 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Describes the state of the specified instances registered with the+-- Describes the state of the specified instances with respect to the -- specified load balancer. If no instances are specified, the call--- describes the state of all instances registered with the load balancer,--- not including any terminated instances.+-- describes the state of all instances that are currently registered with+-- the load balancer. If instances are specified, their state is returned+-- even if they are no longer registered with the load balancer. The state+-- of terminated instances is not returned. -- -- /See:/ <http://docs.aws.amazon.com/ElasticLoadBalancing/latest/APIReference/API_DescribeInstanceHealth.html AWS API Reference> for DescribeInstanceHealth. module Network.AWS.ELB.DescribeInstanceHealth
gen/Network/AWS/ELB/RegisterInstancesWithLoadBalancer.hs view
@@ -27,8 +27,8 @@ -- EC2-Classic instances with the load balancer in the VPC. -- -- Note that 'RegisterInstanceWithLoadBalancer' completes when the request--- has been registered. Instance registration happens shortly afterwards.--- To check the state of the registered instances, use+-- 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
gen/Network/AWS/ELB/Types/Product.hs view
@@ -636,8 +636,9 @@ lProtocol :: Lens' Listener Text lProtocol = lens _lProtocol (\ s a -> s{_lProtocol = a}); --- | The port on which the load balancer is listening. The supported ports--- are: 25, 80, 443, 465, 587, and 1024-65535.+-- | The port on which the load balancer is listening. On EC2-VPC, you can+-- specify any port from the range 1-65535. On EC2-Classic, you can specify+-- any port from the following list: 25, 80, 443, 465, 587, 1024-65535. lLoadBalancerPort :: Lens' Listener Int lLoadBalancerPort = lens _lLoadBalancerPort (\ s a -> s{_lLoadBalancerPort = a});