paws.networking (version 0.1.6)

elb_remove_tags: Removes one or more tags from the specified load balancer

Description

Removes one or more tags from the specified load balancer.

Usage

elb_remove_tags(LoadBalancerNames, Tags)

Arguments

LoadBalancerNames

[required] The name of the load balancer. You can specify a maximum of one load balancer name.

Tags

[required] The list of tag keys to remove.

Request syntax

svc$remove_tags(
  LoadBalancerNames = list(
    "string"
  ),
  Tags = list(
    list(
      Key = "string"
    )
  )
)

Examples

Run this code
# NOT RUN {
# This example removes the specified tag from the specified load balancer.
# }
# NOT RUN {
svc$remove_tags(
  LoadBalancerNames = list(
    "my-load-balancer"
  ),
  Tags = list(
    list(
      Key = "project"
    )
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab