Class: Aws::IoT::Types::StartAuditMitigationActionsTaskRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::StartAuditMitigationActionsTaskRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #audit_check_to_actions_mapping  ⇒ Hash<String,Array<String>> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
For an audit check, specifies which mitigation actions to apply.
 - 
  
    
      #client_request_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Each audit mitigation task must have a unique client request token.
 - 
  
    
      #target  ⇒ Types::AuditMitigationActionsTaskTarget 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the audit findings to which the mitigation actions are applied.
 - 
  
    
      #task_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique identifier for the task.
 
Instance Attribute Details
#audit_check_to_actions_mapping ⇒ Hash<String,Array<String>>
For an audit check, specifies which mitigation actions to apply. Those actions must be defined in your Amazon Web Services accounts.
      13971 13972 13973 13974 13975 13976 13977 13978  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 13971 class StartAuditMitigationActionsTaskRequest < Struct.new( :task_id, :target, :audit_check_to_actions_mapping, :client_request_token) SENSITIVE = [] include Aws::Structure end  | 
  
#client_request_token ⇒ String
Each audit mitigation task must have a unique client request token. If you try to start a new task with the same token as a task that already exists, an exception occurs. If you omit this value, a unique client request token is generated automatically.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
      13971 13972 13973 13974 13975 13976 13977 13978  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 13971 class StartAuditMitigationActionsTaskRequest < Struct.new( :task_id, :target, :audit_check_to_actions_mapping, :client_request_token) SENSITIVE = [] include Aws::Structure end  | 
  
#target ⇒ Types::AuditMitigationActionsTaskTarget
Specifies the audit findings to which the mitigation actions are applied. You can apply them to a type of audit check, to all findings from an audit, or to a specific set of findings.
      13971 13972 13973 13974 13975 13976 13977 13978  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 13971 class StartAuditMitigationActionsTaskRequest < Struct.new( :task_id, :target, :audit_check_to_actions_mapping, :client_request_token) SENSITIVE = [] include Aws::Structure end  | 
  
#task_id ⇒ String
A unique identifier for the task. You can use this identifier to check the status of the task or to cancel it.
      13971 13972 13973 13974 13975 13976 13977 13978  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 13971 class StartAuditMitigationActionsTaskRequest < Struct.new( :task_id, :target, :audit_check_to_actions_mapping, :client_request_token) SENSITIVE = [] include Aws::Structure end  |