Class: Aws::IoT::Types::DeleteCommandResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::DeleteCommandResponse
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status_code ⇒ Integer
The status code for the command deletion request.
Instance Attribute Details
#status_code ⇒ Integer
The status code for the command deletion request. The status code is in the 200 range for a successful request.
If the command hasn't been deprecated, or has been deprecated for a duration that is shorter than the maximum time out duration of 12 hours, when calling the
DeleteCommand
request, the deletion will be scheduled and a 202 status code will be returned. While the command is being deleted, it will be in apendingDeletion
state. Once the time out duration has been reached, the command will be permanently removed from your account.If the command has been deprecated for a duration that is longer than the maximum time out duration of 12 hours, when calling the
DeleteCommand
request, the command will be deleted immediately and a 204 status code will be returned.
4864 4865 4866 4867 4868 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 4864 class DeleteCommandResponse < Struct.new( :status_code) SENSITIVE = [] include Aws::Structure end |