Class: Aws::IoT::Types::KafkaActionHeader
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::KafkaActionHeader
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Specifies a Kafka header using key-value pairs when you create a Rule’s Kafka Action. You can use these headers to route data from IoT clients to downstream Kafka clusters without modifying your message payload.
For more information about Rule’s Kafka action, see [Apache Kafka].
[1]: docs.aws.amazon.com/iot/latest/developerguide/apache-kafka-rule-action.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key of the Kafka header.
-
#value ⇒ String
The value of the Kafka header.
Instance Attribute Details
#key ⇒ String
The key of the Kafka header.
9055 9056 9057 9058 9059 9060 |
# File 'lib/aws-sdk-iot/types.rb', line 9055 class KafkaActionHeader < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the Kafka header.
9055 9056 9057 9058 9059 9060 |
# File 'lib/aws-sdk-iot/types.rb', line 9055 class KafkaActionHeader < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |