Class: Aws::IoT::Types::RepublishAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::RepublishAction
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Describes an action to republish to another topic.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#headers ⇒ Types::MqttHeaders
MQTT Version 5.0 headers information.
-
#qos ⇒ Integer
The Quality of Service (QoS) level to use when republishing messages.
-
#role_arn ⇒ String
The ARN of the IAM role that grants access.
-
#topic ⇒ String
The name of the MQTT topic.
Instance Attribute Details
#headers ⇒ Types::MqttHeaders
MQTT Version 5.0 headers information. For more information, see MQTT from the Amazon Web Services IoT Core Developer Guide.
13549 13550 13551 13552 13553 13554 13555 13556 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13549 class RepublishAction < Struct.new( :role_arn, :topic, :qos, :headers) SENSITIVE = [] include Aws::Structure end |
#qos ⇒ Integer
The Quality of Service (QoS) level to use when republishing messages. The default value is 0.
13549 13550 13551 13552 13553 13554 13555 13556 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13549 class RepublishAction < Struct.new( :role_arn, :topic, :qos, :headers) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the IAM role that grants access.
13549 13550 13551 13552 13553 13554 13555 13556 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13549 class RepublishAction < Struct.new( :role_arn, :topic, :qos, :headers) SENSITIVE = [] include Aws::Structure end |
#topic ⇒ String
The name of the MQTT topic.
13549 13550 13551 13552 13553 13554 13555 13556 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13549 class RepublishAction < Struct.new( :role_arn, :topic, :qos, :headers) SENSITIVE = [] include Aws::Structure end |