Class: Aws::SES::Types::SendCustomVerificationEmailRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::SES::Types::SendCustomVerificationEmailRequest
 
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Represents a request to send a custom verification email to a specified recipient.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #configuration_set_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Name of a configuration set to use when sending the verification email. 
- 
  
    
      #email_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The email address to verify. 
- 
  
    
      #template_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the custom verification email template to use when sending the verification email. 
Instance Attribute Details
#configuration_set_name ⇒ String
Name of a configuration set to use when sending the verification email.
| 4001 4002 4003 4004 4005 4006 4007 | # File 'lib/aws-sdk-ses/types.rb', line 4001 class SendCustomVerificationEmailRequest < Struct.new( :email_address, :template_name, :configuration_set_name) SENSITIVE = [] include Aws::Structure end | 
#email_address ⇒ String
The email address to verify.
| 4001 4002 4003 4004 4005 4006 4007 | # File 'lib/aws-sdk-ses/types.rb', line 4001 class SendCustomVerificationEmailRequest < Struct.new( :email_address, :template_name, :configuration_set_name) SENSITIVE = [] include Aws::Structure end | 
#template_name ⇒ String
The name of the custom verification email template to use when sending the verification email.
| 4001 4002 4003 4004 4005 4006 4007 | # File 'lib/aws-sdk-ses/types.rb', line 4001 class SendCustomVerificationEmailRequest < Struct.new( :email_address, :template_name, :configuration_set_name) SENSITIVE = [] include Aws::Structure end |