Class: Aws::RoboMaker::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
Note:
When making an API call, you may pass TagResourceRequest data as a hash:
{
resource_arn: "Arn", # required
tags: { # required
"TagKey" => "TagValue",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the AWS RoboMaker resource you are tagging.
-
#tags ⇒ Hash<String,String>
A map that contains tag keys and tag values that are attached to the resource.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the AWS RoboMaker resource you are tagging.
6485 6486 6487 6488 6489 6490 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 6485 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A map that contains tag keys and tag values that are attached to the resource.
6485 6486 6487 6488 6489 6490 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 6485 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |