Class: Aws::IVS::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVS::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb
Overview
Note:
When making an API call, you may pass TagResourceRequest data as a hash:
{
resource_arn: "ResourceArn", # required
tags: { # required
"TagKey" => "TagValue",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
ARN of the resource for which tags are to be added or updated.
-
#tags ⇒ Hash<String,String>
Array of tags to be added or updated.
Instance Attribute Details
#resource_arn ⇒ String
ARN of the resource for which tags are to be added or updated.
1744 1745 1746 1747 1748 1749 |
# File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1744 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Array of tags to be added or updated.
1744 1745 1746 1747 1748 1749 |
# File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1744 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |