Skip to content

Remove Tags

elb_remove_tags R Documentation

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.

Value

An empty list.

Request syntax

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

Examples

## Not run: 
# This example removes the specified tag from the specified load balancer.
svc$remove_tags(
  LoadBalancerNames = list(
    "my-load-balancer"
  ),
  Tags = list(
    list(
      Key = "project"
    )
  )
)

## End(Not run)