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_id ⇒ String
Not Implemented.
-
#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.
2020 2021 2022 2023 2024 2025 2026 2027 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2020 class RemoveTagsFromStreamInput < Struct.new( :stream_name, :tag_keys, :stream_arn, :stream_id) SENSITIVE = [] include Aws::Structure end |
#stream_id ⇒ String
Not Implemented. Reserved for future use.
2020 2021 2022 2023 2024 2025 2026 2027 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2020 class RemoveTagsFromStreamInput < Struct.new( :stream_name, :tag_keys, :stream_arn, :stream_id) SENSITIVE = [] include Aws::Structure end |
#stream_name ⇒ String
The name of the stream.
2020 2021 2022 2023 2024 2025 2026 2027 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2020 class RemoveTagsFromStreamInput < Struct.new( :stream_name, :tag_keys, :stream_arn, :stream_id) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
A list of tag keys. Each corresponding tag is removed from the stream.
2020 2021 2022 2023 2024 2025 2026 2027 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2020 class RemoveTagsFromStreamInput < Struct.new( :stream_name, :tag_keys, :stream_arn, :stream_id) SENSITIVE = [] include Aws::Structure end |