Class: Aws::Batch::Types::UntagResourceRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb

Overview

Contains the parameters for UntagResource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the resource from which to delete tags. Batch resources that support tags are compute environments, jobs, job definitions, job queues, and scheduling policies. ARNs for child jobs of array and multi-node parallel (MNP) jobs aren't supported.

Returns:

  • (String)


9857
9858
9859
9860
9861
9862
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 9857

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end

#tag_keysArray<String>

The keys of the tags to be removed.

Returns:

  • (Array<String>)


9857
9858
9859
9860
9861
9862
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 9857

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end