Class: Aws::IoT::Types::StatusReason
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::StatusReason
- Includes:
- Structure
- Defined in:
- 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.
15609 15610 15611 15612 15613 15614 |
# File 'lib/aws-sdk-iot/types.rb', line 15609 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.
15609 15610 15611 15612 15613 15614 |
# File 'lib/aws-sdk-iot/types.rb', line 15609 class StatusReason < Struct.new( :reason_code, :reason_description) SENSITIVE = [] include Aws::Structure end |