Class: Aws::IoTEvents::Types::IotTopicPublishAction

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#mqtt_topicString

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.

Returns:

  • (String)


2146
2147
2148
2149
2150
2151
# File 'lib/aws-sdk-iotevents/types.rb', line 2146

class IotTopicPublishAction < Struct.new(
  :mqtt_topic,
  :payload)
  SENSITIVE = []
  include Aws::Structure
end

#payloadTypes::Payload

You can configure the action payload when you publish a message to an AWS IoT Core topic.

Returns:



2146
2147
2148
2149
2150
2151
# File 'lib/aws-sdk-iotevents/types.rb', line 2146

class IotTopicPublishAction < Struct.new(
  :mqtt_topic,
  :payload)
  SENSITIVE = []
  include Aws::Structure
end