Class: Aws::KinesisVideo::Types::TagResourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideo::Types::TagResourceInput
- Defined in:
- gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb
Overview
Note:
When making an API call, you may pass TagResourceInput data as a hash:
{
resource_arn: "ResourceARN", # required
tags: [ # required
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the signaling channel to which you want to add tags.
-
#tags ⇒ Array<Types::Tag>
A list of tags to associate with the specified signaling channel.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the signaling channel to which you want to add tags.
1084 1085 1086 1087 1088 1089 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 1084 class TagResourceInput < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags to associate with the specified signaling channel. Each tag is a key-value pair.
1084 1085 1086 1087 1088 1089 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 1084 class TagResourceInput < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |