Class: Aws::IoTEvents::Types::IotTopicPublishAction
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::IoTEvents::Types::IotTopicPublishAction
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotevents/types.rb
Overview
Information required to publish the MQTT message through the AWS IoT message broker.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #mqtt_topic  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The MQTT topic of the message. 
- 
  
    
      #payload  ⇒ Types::Payload 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    You can configure the action payload when you publish a message to an AWS IoT Core topic. 
Instance Attribute Details
#mqtt_topic ⇒ String
The MQTT topic of the message. You can use a string expression that includes variables (‘$variable.<variable-name>`) and input values (`$input.<input-name>.<path-to-datum>`) as the topic string.
| 2147 2148 2149 2150 2151 2152 | # File 'lib/aws-sdk-iotevents/types.rb', line 2147 class IotTopicPublishAction < Struct.new( :mqtt_topic, :payload) SENSITIVE = [] include Aws::Structure end | 
#payload ⇒ Types::Payload
You can configure the action payload when you publish a message to an AWS IoT Core topic.
| 2147 2148 2149 2150 2151 2152 | # File 'lib/aws-sdk-iotevents/types.rb', line 2147 class IotTopicPublishAction < Struct.new( :mqtt_topic, :payload) SENSITIVE = [] include Aws::Structure end |