Learn R Programming

paws.compute (version 0.1.12)

lambda_untag_resource: Removes tags from a function

Description

Removes tags from a function.

Usage

lambda_untag_resource(Resource, TagKeys)

Value

An empty list.

Arguments

Resource

[required] The function's Amazon Resource Name (ARN).

TagKeys

[required] A list of tag keys to remove from the function.

Request syntax

svc$untag_resource(
  Resource = "string",
  TagKeys = list(
    "string"
  )
)

Examples

Run this code
if (FALSE) {
# The following example removes the tag with the key name DEPARTMENT tag
# from the my-function Lambda function.
svc$untag_resource(
  Resource = "arn:aws:lambda:us-west-2:123456789012:function:my-function",
  TagKeys = list(
    "DEPARTMENT"
  )
)
}

Run the code above in your browser using DataLab