Class: Aws::IoTDataPlane::Types::GetRetainedMessageResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTDataPlane::Types::GetRetainedMessageResponse
- Defined in:
- gems/aws-sdk-iotdataplane/lib/aws-sdk-iotdataplane/types.rb
Overview
The output from the GetRetainedMessage operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#last_modified_time ⇒ Integer
The Epoch date and time, in milliseconds, when the retained message was stored by IoT.
-
#payload ⇒ String
The Base64-encoded message payload of the retained message body.
-
#qos ⇒ Integer
The quality of service (QoS) level used to publish the retained message.
-
#topic ⇒ String
The topic name to which the retained message was published.
Instance Attribute Details
#last_modified_time ⇒ Integer
The Epoch date and time, in milliseconds, when the retained message was stored by IoT.
101 102 103 104 105 106 107 108 |
# File 'gems/aws-sdk-iotdataplane/lib/aws-sdk-iotdataplane/types.rb', line 101 class GetRetainedMessageResponse < Struct.new( :topic, :payload, :qos, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#payload ⇒ String
The Base64-encoded message payload of the retained message body.
101 102 103 104 105 106 107 108 |
# File 'gems/aws-sdk-iotdataplane/lib/aws-sdk-iotdataplane/types.rb', line 101 class GetRetainedMessageResponse < Struct.new( :topic, :payload, :qos, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#qos ⇒ Integer
The quality of service (QoS) level used to publish the retained message.
101 102 103 104 105 106 107 108 |
# File 'gems/aws-sdk-iotdataplane/lib/aws-sdk-iotdataplane/types.rb', line 101 class GetRetainedMessageResponse < Struct.new( :topic, :payload, :qos, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#topic ⇒ String
The topic name to which the retained message was published.
101 102 103 104 105 106 107 108 |
# File 'gems/aws-sdk-iotdataplane/lib/aws-sdk-iotdataplane/types.rb', line 101 class GetRetainedMessageResponse < Struct.new( :topic, :payload, :qos, :last_modified_time) SENSITIVE = [] include Aws::Structure end |