paws.networking (version 0.1.6)

elb_delete_load_balancer_listeners: Deletes the specified listeners from the specified load balancer

Description

Deletes the specified listeners from the specified load balancer.

Usage

elb_delete_load_balancer_listeners(LoadBalancerName, LoadBalancerPorts)

Arguments

LoadBalancerName

[required] The name of the load balancer.

LoadBalancerPorts

[required] The client port numbers of the listeners.

Request syntax

svc$delete_load_balancer_listeners(
  LoadBalancerName = "string",
  LoadBalancerPorts = list(
    123
  )
)

Examples

Run this code
# NOT RUN {
# This example deletes the listener for the specified port from the
# specified load balancer.
# }
# NOT RUN {
svc$delete_load_balancer_listeners(
  LoadBalancerName = "my-load-balancer",
  LoadBalancerPorts = list(
    80L
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab