Deletes listeners from the LoadBalancer for the specified port.
Access
public
Parameters
Parameter |
Type |
Required |
Description |
---|---|---|---|
|
Required |
The mnemonic name associated with the LoadBalancer. |
|
|
Required |
The client port number(s) of the LoadBalancerListener(s) to be removed. |
|
|
Optional |
An associative array of parameters that can have the following keys:
|
Returns
Type |
Description |
---|---|
A |
Examples
Delete a load balancer listener.
$elb = new AmazonELB(); $response = $elb->delete_load_balancer_listeners('my-load-balancer', array(80, 65533)); // Success? var_dump($response->isOK());Result:
bool(true)
Related Methods
Source
Method defined in services/elb.class.php | Toggle source view (12 lines) | View on GitHub