Class: Aws::SES::Types::SetIdentityDkimEnabledRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SES::Types::SetIdentityDkimEnabledRequest
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-ses/types.rb
 
Overview
Represents a request to enable or disable Amazon SES Easy DKIM signing for an identity. For more information about setting up Easy DKIM, see the [Amazon SES Developer Guide].
[1]: docs.aws.amazon.com/ses/latest/dg/send-email-authentication-dkim-easy.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #dkim_enabled  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Sets whether DKIM signing is enabled for an identity.
 - 
  
    
      #identity  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identity for which DKIM signing should be enabled or disabled.
 
Instance Attribute Details
#dkim_enabled ⇒ Boolean
Sets whether DKIM signing is enabled for an identity. Set to ‘true` to enable DKIM signing for this identity; `false` to disable it.
      4616 4617 4618 4619 4620 4621  | 
    
      # File 'lib/aws-sdk-ses/types.rb', line 4616 class SetIdentityDkimEnabledRequest < Struct.new( :identity, :dkim_enabled) SENSITIVE = [] include Aws::Structure end  | 
  
#identity ⇒ String
The identity for which DKIM signing should be enabled or disabled.
      4616 4617 4618 4619 4620 4621  | 
    
      # File 'lib/aws-sdk-ses/types.rb', line 4616 class SetIdentityDkimEnabledRequest < Struct.new( :identity, :dkim_enabled) SENSITIVE = [] include Aws::Structure end  |