Class: Aws::PinpointEmail::Types::PutConfigurationSetReputationOptionsRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PinpointEmail::Types::PutConfigurationSetReputationOptionsRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpointemail/types.rb
 
Overview
A request to enable or disable tracking of reputation metrics for a configuration set.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #configuration_set_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the configuration set that you want to enable or disable reputation metric tracking for.
 - 
  
    
      #reputation_metrics_enabled  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If ‘true`, tracking of reputation metrics is enabled for the configuration set.
 
Instance Attribute Details
#configuration_set_name ⇒ String
The name of the configuration set that you want to enable or disable reputation metric tracking for.
      2397 2398 2399 2400 2401 2402  | 
    
      # File 'lib/aws-sdk-pinpointemail/types.rb', line 2397 class PutConfigurationSetReputationOptionsRequest < Struct.new( :configuration_set_name, :reputation_metrics_enabled) SENSITIVE = [] include Aws::Structure end  | 
  
#reputation_metrics_enabled ⇒ Boolean
If ‘true`, tracking of reputation metrics is enabled for the configuration set. If `false`, tracking of reputation metrics is disabled for the configuration set.
      2397 2398 2399 2400 2401 2402  | 
    
      # File 'lib/aws-sdk-pinpointemail/types.rb', line 2397 class PutConfigurationSetReputationOptionsRequest < Struct.new( :configuration_set_name, :reputation_metrics_enabled) SENSITIVE = [] include Aws::Structure end  |