Class: Aws::IoT::Types::CancelAuditTaskRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::CancelAuditTaskRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass CancelAuditTaskRequest data as a hash:
{
task_id: "AuditTaskId", # required
}
Instance Attribute Summary collapse
-
#task_id ⇒ String
The ID of the audit you want to cancel.
Instance Attribute Details
#task_id ⇒ String
The ID of the audit you want to cancel. You can only cancel an audit that is “IN_PROGRESS”.
1153 1154 1155 1156 |
# File 'lib/aws-sdk-iot/types.rb', line 1153 class CancelAuditTaskRequest < Struct.new( :task_id) include Aws::Structure end |