Class: Aws::ConfigService::Types::RemediationParameterValue
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ConfigService::Types::RemediationParameterValue
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-configservice/types.rb
 
Overview
The value is either a dynamic (resource) value or a static value. You must select either a dynamic value or a static value.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #resource_value  ⇒ Types::ResourceValue 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value is dynamic and changes at run-time.
 - 
  
    
      #static_value  ⇒ Types::StaticValue 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value is static and does not change at run-time.
 
Instance Attribute Details
#resource_value ⇒ Types::ResourceValue
The value is dynamic and changes at run-time.
      7853 7854 7855 7856 7857 7858  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 7853 class RemediationParameterValue < Struct.new( :resource_value, :static_value) SENSITIVE = [] include Aws::Structure end  | 
  
#static_value ⇒ Types::StaticValue
The value is static and does not change at run-time.
      7853 7854 7855 7856 7857 7858  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 7853 class RemediationParameterValue < Struct.new( :resource_value, :static_value) SENSITIVE = [] include Aws::Structure end  |