Class: Aws::Kinesis::Types::AddTagsToStreamInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::AddTagsToStreamInput
- Defined in:
- gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb
Overview
Note:
When making an API call, you may pass AddTagsToStreamInput data as a hash:
{
stream_name: "StreamName", # required
tags: { # required
"TagKey" => "TagValue",
},
}
Represents the input for AddTagsToStream
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#stream_name ⇒ String
The name of the stream.
-
#tags ⇒ Hash<String,String>
A set of up to 10 key-value pairs to use to create the tags.
Instance Attribute Details
#stream_name ⇒ String
The name of the stream.
35 36 37 38 39 40 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 35 class AddTagsToStreamInput < Struct.new( :stream_name, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A set of up to 10 key-value pairs to use to create the tags.
35 36 37 38 39 40 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 35 class AddTagsToStreamInput < Struct.new( :stream_name, :tags) SENSITIVE = [] include Aws::Structure end |