Class: Aws::PinpointEmail::Types::PutConfigurationSetSendingOptionsRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PinpointEmail::Types::PutConfigurationSetSendingOptionsRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpointemail/types.rb
 
Overview
A request to enable or disable the ability of Amazon Pinpoint to send emails that use a specific 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 email sending for.
 - 
  
    
      #sending_enabled  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If ‘true`, email sending 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 email sending for.
      2426 2427 2428 2429 2430 2431  | 
    
      # File 'lib/aws-sdk-pinpointemail/types.rb', line 2426 class PutConfigurationSetSendingOptionsRequest < Struct.new( :configuration_set_name, :sending_enabled) SENSITIVE = [] include Aws::Structure end  | 
  
#sending_enabled ⇒ Boolean
If ‘true`, email sending is enabled for the configuration set. If `false`, email sending is disabled for the configuration set.
      2426 2427 2428 2429 2430 2431  | 
    
      # File 'lib/aws-sdk-pinpointemail/types.rb', line 2426 class PutConfigurationSetSendingOptionsRequest < Struct.new( :configuration_set_name, :sending_enabled) SENSITIVE = [] include Aws::Structure end  |