Class: Aws::Batch::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::UntagResourceRequest
- 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
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource from which to delete tags.
-
#tag_keys ⇒ Array<String>
The keys of the tags to be removed.
Instance Attribute Details
#resource_arn ⇒ String
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.
8850 8851 8852 8853 8854 8855 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 8850 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The keys of the tags to be removed.
8850 8851 8852 8853 8854 8855 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 8850 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |