paws.management (version 0.1.0)

autoscaling_delete_tags: Deletes the specified tags

Description

Deletes the specified tags.

Usage

autoscaling_delete_tags(Tags)

Arguments

Tags

[required] One or more tags.

Request syntax

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

Examples

Run this code
# NOT RUN {
# This example deletes the specified tag from the specified Auto Scaling
# group.
# }
# NOT RUN {
svc$delete_tags(
  Tags = list(
    list(
      Key = "Dept",
      ResourceId = "my-auto-scaling-group",
      ResourceType = "auto-scaling-group",
      Value = "Research"
    )
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab