Class: Aws::Kinesis::Types::RemoveTagsFromStreamInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::RemoveTagsFromStreamInput
- Defined in:
- gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb
Overview
Represents the input for RemoveTagsFromStream
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#stream_arn ⇒ String
The ARN of the stream.
-
#stream_name ⇒ String
The name of the stream.
-
#tag_keys ⇒ Array<String>
A list of tag keys.
Instance Attribute Details
#stream_arn ⇒ String
The ARN of the stream.
1714 1715 1716 1717 1718 1719 1720 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1714 class RemoveTagsFromStreamInput < Struct.new( :stream_name, :tag_keys, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#stream_name ⇒ String
The name of the stream.
1714 1715 1716 1717 1718 1719 1720 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1714 class RemoveTagsFromStreamInput < Struct.new( :stream_name, :tag_keys, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
A list of tag keys. Each corresponding tag is removed from the stream.
1714 1715 1716 1717 1718 1719 1720 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1714 class RemoveTagsFromStreamInput < Struct.new( :stream_name, :tag_keys, :stream_arn) SENSITIVE = [] include Aws::Structure end |