Class: Aws::Batch::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
Contains the parameters for TagResource
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource that tags are added to.
-
#tags ⇒ Hash<String,String>
The tags that you apply to the resource to help you categorize and organize your resources.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource that tags are added to. 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.
7111 7112 7113 7114 7115 7116 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 7111 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The tags that you apply to the resource to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services Resources in Amazon Web Services General Reference.
7111 7112 7113 7114 7115 7116 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 7111 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |