Class: Aws::AppRegistry::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRegistry::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/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) that specifies the resource.
-
#tags ⇒ Hash<String,String>
The new or modified tags for the resource.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon resource name (ARN) that specifies the resource.
1313 1314 1315 1316 1317 1318 |
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 1313 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The new or modified tags for the resource.
1313 1314 1315 1316 1317 1318 |
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 1313 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |