Skip to content

Delete Tags

autoscaling_delete_tags R Documentation

Deletes the specified tags

Description

Deletes the specified tags.

Usage

autoscaling_delete_tags(Tags)

Arguments

Tags

[required] One or more tags.

Value

An empty list.

Request syntax

svc$delete_tags(
  Tags = list(
    list(
      ResourceId = "string",
      ResourceType = "string",
      Key = "string",
      Value = "string",
      PropagateAtLaunch = TRUE|FALSE
    )
  )
)

Examples

## Not run: 
# This example deletes the specified tag from the specified Auto Scaling
# group.
svc$delete_tags(
  Tags = list(
    list(
      Key = "Dept",
      ResourceId = "my-auto-scaling-group",
      ResourceType = "auto-scaling-group",
      Value = "Research"
    )
  )
)

## End(Not run)