AWSSESSendCustomVerificationEmailRequest

Objective-C

@interface AWSSESSendCustomVerificationEmailRequest

Swift

class AWSSESSendCustomVerificationEmailRequest

Represents a request to send a custom verification email to a specified recipient.

Required parameters: [EmailAddress, TemplateName]

  • Name of a configuration set to use when sending the verification email.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable configurationSetName;

    Swift

    var configurationSetName: String? { get set }
  • The email address to verify.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable emailAddress;

    Swift

    var emailAddress: String? { get set }
  • The name of the custom verification email template to use when sending the verification email.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable templateName;

    Swift

    var templateName: String? { get set }