Class: Aws::PinpointEmail::Types::PutAccountSendingAttributesRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PinpointEmail::Types::PutAccountSendingAttributesRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpointemail/types.rb
 
Overview
A request to change the ability of your account to send email.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #sending_enabled  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Enables or disables your account’s ability to send email.
 
Instance Attribute Details
#sending_enabled ⇒ Boolean
Enables or disables your account’s ability to send email. Set to ‘true` to enable email sending, or set to `false` to disable email sending.
<note markdown=“1”> If AWS paused your account’s ability to send email, you can’t use this operation to resume your account’s ability to send email.
</note>
  
      2331 2332 2333 2334 2335  | 
    
      # File 'lib/aws-sdk-pinpointemail/types.rb', line 2331 class PutAccountSendingAttributesRequest < Struct.new( :sending_enabled) SENSITIVE = [] include Aws::Structure end  |