paws.networking (version 0.1.6)

elbv2_remove_tags: Removes the specified tags from the specified Elastic Load Balancing resource

Description

Removes the specified tags from the specified Elastic Load Balancing resource.

Usage

elbv2_remove_tags(ResourceArns, TagKeys)

Arguments

ResourceArns

[required] The Amazon Resource Name (ARN) of the resource.

TagKeys

[required] The tag keys for the tags to remove.

Request syntax

svc$remove_tags(
  ResourceArns = list(
    "string"
  ),
  TagKeys = list(
    "string"
  )
)

Details

To list the current tags for your resources, use DescribeTags.

Examples

Run this code
# NOT RUN {
# This example removes the specified tags from the specified load
# balancer.
# }
# NOT RUN {
svc$remove_tags(
  ResourceArns = list(
    "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/5..."
  ),
  TagKeys = list(
    "project",
    "department"
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab