paws.networking (version 0.1.6)

elb_disable_availability_zones_for_load_balancer: Removes the specified Availability Zones from the set of Availability Zones for the specified load balancer in EC2-Classic or a default VPC

Description

Removes the specified Availability Zones from the set of Availability Zones for the specified load balancer in EC2-Classic or a default VPC.

Usage

elb_disable_availability_zones_for_load_balancer(LoadBalancerName,
  AvailabilityZones)

Arguments

LoadBalancerName

[required] The name of the load balancer.

AvailabilityZones

[required] The Availability Zones.

Request syntax

svc$disable_availability_zones_for_load_balancer(
  LoadBalancerName = "string",
  AvailabilityZones = list(
    "string"
  )
)

Details

For load balancers in a non-default VPC, use DetachLoadBalancerFromSubnets.

There must be at least one Availability Zone registered with a load balancer at all times. After an Availability Zone is removed, all instances registered with the load balancer that are in the removed Availability Zone go into the OutOfService state. Then, the load balancer attempts to equally balance the traffic among its remaining Availability Zones.

For more information, see Add or Remove Availability Zones in the Classic Load Balancers Guide.

Examples

Run this code
# NOT RUN {
# This example removes the specified Availability Zone from the set of
# Availability Zones for the specified load balancer.
# }
# NOT RUN {
svc$disable_availability_zones_for_load_balancer(
  AvailabilityZones = list(
    "us-west-2a"
  ),
  LoadBalancerName = "my-load-balancer"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace