Class: Aws::ConfigService::Types::PutRemediationExceptionsRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ConfigService::Types::PutRemediationExceptionsRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-configservice/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #config_rule_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the Config rule for which you want to create remediation exception.
 - 
  
    
      #expiration_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The exception is automatically deleted after the expiration date.
 - 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The message contains an explanation of the exception.
 - 
  
    
      #resource_keys  ⇒ Array<Types::RemediationExceptionResourceKey> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An exception list of resource exception keys to be processed with the current request.
 
Instance Attribute Details
#config_rule_name ⇒ String
The name of the Config rule for which you want to create remediation exception.
      6888 6889 6890 6891 6892 6893 6894 6895  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 6888 class PutRemediationExceptionsRequest < Struct.new( :config_rule_name, :resource_keys, :message, :expiration_time) SENSITIVE = [] include Aws::Structure end  | 
  
#expiration_time ⇒ Time
The exception is automatically deleted after the expiration date.
      6888 6889 6890 6891 6892 6893 6894 6895  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 6888 class PutRemediationExceptionsRequest < Struct.new( :config_rule_name, :resource_keys, :message, :expiration_time) SENSITIVE = [] include Aws::Structure end  | 
  
#message ⇒ String
The message contains an explanation of the exception.
      6888 6889 6890 6891 6892 6893 6894 6895  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 6888 class PutRemediationExceptionsRequest < Struct.new( :config_rule_name, :resource_keys, :message, :expiration_time) SENSITIVE = [] include Aws::Structure end  | 
  
#resource_keys ⇒ Array<Types::RemediationExceptionResourceKey>
An exception list of resource exception keys to be processed with the current request. Config adds exception for each resource key. For example, Config adds 3 exceptions for 3 resource keys.
      6888 6889 6890 6891 6892 6893 6894 6895  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 6888 class PutRemediationExceptionsRequest < Struct.new( :config_rule_name, :resource_keys, :message, :expiration_time) SENSITIVE = [] include Aws::Structure end  |