Class: Aws::IoT::Types::StatusReason
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::StatusReason
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Provide additional context about the status of a command execution using a reason code and description.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reason_code ⇒ String
A code that provides additional context for the command execution status.
-
#reason_description ⇒ String
A literal string for devices to optionally provide additional information about the reason code for a command execution status.
Instance Attribute Details
#reason_code ⇒ String
A code that provides additional context for the command execution status.
15568 15569 15570 15571 15572 15573 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 15568 class StatusReason < Struct.new( :reason_code, :reason_description) SENSITIVE = [] include Aws::Structure end |
#reason_description ⇒ String
A literal string for devices to optionally provide additional information about the reason code for a command execution status.
15568 15569 15570 15571 15572 15573 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 15568 class StatusReason < Struct.new( :reason_code, :reason_description) SENSITIVE = [] include Aws::Structure end |