Class: Aws::IoTDataPlane::Types::RetainedMessageSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTDataPlane::Types::RetainedMessageSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotdataplane/types.rb
Overview
Information about a single retained message.
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_size ⇒ Integer
The size of the retained message’s payload in bytes.
-
#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.
389 390 391 392 393 394 395 396 |
# File 'lib/aws-sdk-iotdataplane/types.rb', line 389 class RetainedMessageSummary < Struct.new( :topic, :payload_size, :qos, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#payload_size ⇒ Integer
The size of the retained message’s payload in bytes.
389 390 391 392 393 394 395 396 |
# File 'lib/aws-sdk-iotdataplane/types.rb', line 389 class RetainedMessageSummary < Struct.new( :topic, :payload_size, :qos, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#qos ⇒ Integer
The quality of service (QoS) level used to publish the retained message.
389 390 391 392 393 394 395 396 |
# File 'lib/aws-sdk-iotdataplane/types.rb', line 389 class RetainedMessageSummary < Struct.new( :topic, :payload_size, :qos, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#topic ⇒ String
The topic name to which the retained message was published.
389 390 391 392 393 394 395 396 |
# File 'lib/aws-sdk-iotdataplane/types.rb', line 389 class RetainedMessageSummary < Struct.new( :topic, :payload_size, :qos, :last_modified_time) SENSITIVE = [] include Aws::Structure end |