Learn R Programming

paws.compute (version 0.1.12)

batch_untag_resource: Deletes specified tags from an AWS Batch resource

Description

Deletes specified tags from an AWS Batch resource.

Usage

batch_untag_resource(resourceArn, tagKeys)

Value

An empty list.

Arguments

resourceArn

[required] The Amazon Resource Name (ARN) of the resource from which to delete tags. AWS Batch resources that support tags are compute environments, jobs, job definitions, and job queues. ARNs for child jobs of array and multi-node parallel (MNP) jobs are not supported.

tagKeys

[required] The keys of the tags to be removed.

Request syntax

svc$untag_resource(
  resourceArn = "string",
  tagKeys = list(
    "string"
  )
)

Examples

Run this code
if (FALSE) {
# This demonstrates calling the UntagResource action.
svc$untag_resource(
  resourceArn = "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1",
  tagKeys = list(
    "Stage"
  )
)
}

Run the code above in your browser using DataLab