// // Copyright 2010-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"). // You may not use this file except in compliance with the License. // A copy of the License is located at // // http://aws.amazon.com/apache2.0 // // or in the "license" file accompanying this file. This file is distributed // on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either // express or implied. See the License for the specific language governing // permissions and limitations under the License. // #import #import #import "AWSSESModel.h" #import "AWSSESResources.h" NS_ASSUME_NONNULL_BEGIN //! SDK version for AWSSES FOUNDATION_EXPORT NSString *const AWSSESSDKVersion; /** Amazon Simple Email Service

This document contains reference information for the Amazon Simple Email Service (Amazon SES) API, version 2010-12-01. This document is best used in conjunction with the Amazon SES Developer Guide.

For a list of Amazon SES endpoints to use in service requests, see Regions and Amazon SES in the Amazon SES Developer Guide.

*/ @interface AWSSES : AWSService /** The service configuration used to instantiate this service client. @warning Once the client is instantiated, do not modify the configuration object. It may cause unspecified behaviors. */ @property (nonatomic, strong, readonly) AWSServiceConfiguration *configuration; /** Returns the singleton service client. If the singleton object does not exist, the SDK instantiates the default service client with `defaultServiceConfiguration` from `[AWSServiceManager defaultServiceManager]`. The reference to this object is maintained by the SDK, and you do not need to retain it manually. For example, set the default service configuration in `- application:didFinishLaunchingWithOptions:` *Swift* func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { let credentialProvider = AWSCognitoCredentialsProvider(regionType: .USEast1, identityPoolId: "YourIdentityPoolId") let configuration = AWSServiceConfiguration(region: .USEast1, credentialsProvider: credentialProvider) AWSServiceManager.default().defaultServiceConfiguration = configuration return true } *Objective-C* - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { AWSCognitoCredentialsProvider *credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1 identityPoolId:@"YourIdentityPoolId"]; AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSEast1 credentialsProvider:credentialsProvider]; [AWSServiceManager defaultServiceManager].defaultServiceConfiguration = configuration; return YES; } Then call the following to get the default service client: *Swift* let SES = AWSSES.default() *Objective-C* AWSSES *SES = [AWSSES defaultSES]; @return The default service client. */ + (instancetype)defaultSES; /** Creates a service client with the given service configuration and registers it for the key. For example, set the default service configuration in `- application:didFinishLaunchingWithOptions:` *Swift* func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { let credentialProvider = AWSCognitoCredentialsProvider(regionType: .USEast1, identityPoolId: "YourIdentityPoolId") let configuration = AWSServiceConfiguration(region: .USWest2, credentialsProvider: credentialProvider) AWSSES.register(with: configuration!, forKey: "USWest2SES") return true } *Objective-C* - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { AWSCognitoCredentialsProvider *credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1 identityPoolId:@"YourIdentityPoolId"]; AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSWest2 credentialsProvider:credentialsProvider]; [AWSSES registerSESWithConfiguration:configuration forKey:@"USWest2SES"]; return YES; } Then call the following to get the service client: *Swift* let SES = AWSSES(forKey: "USWest2SES") *Objective-C* AWSSES *SES = [AWSSES SESForKey:@"USWest2SES"]; @warning After calling this method, do not modify the configuration object. It may cause unspecified behaviors. @param configuration A service configuration object. @param key A string to identify the service client. */ + (void)registerSESWithConfiguration:(AWSServiceConfiguration *)configuration forKey:(NSString *)key; /** Retrieves the service client associated with the key. You need to call `+ registerSESWithConfiguration:forKey:` before invoking this method. For example, set the default service configuration in `- application:didFinishLaunchingWithOptions:` *Swift* func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { let credentialProvider = AWSCognitoCredentialsProvider(regionType: .USEast1, identityPoolId: "YourIdentityPoolId") let configuration = AWSServiceConfiguration(region: .USWest2, credentialsProvider: credentialProvider) AWSSES.register(with: configuration!, forKey: "USWest2SES") return true } *Objective-C* - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { AWSCognitoCredentialsProvider *credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1 identityPoolId:@"YourIdentityPoolId"]; AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSWest2 credentialsProvider:credentialsProvider]; [AWSSES registerSESWithConfiguration:configuration forKey:@"USWest2SES"]; return YES; } Then call the following to get the service client: *Swift* let SES = AWSSES(forKey: "USWest2SES") *Objective-C* AWSSES *SES = [AWSSES SESForKey:@"USWest2SES"]; @param key A string to identify the service client. @return An instance of the service client. */ + (instancetype)SESForKey:(NSString *)key; /** Removes the service client associated with the key and release it. @warning Before calling this method, make sure no method is running on this client. @param key A string to identify the service client. */ + (void)removeSESForKey:(NSString *)key; /**

Creates a receipt rule set by cloning an existing one. All receipt rules and configurations are copied to the new receipt rule set and are completely independent of the source rule set.

For information about setting up rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CloneReceiptRuleSet service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESCloneReceiptRuleSetResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleSetDoesNotExist`, `AWSSESErrorAlreadyExists`, `AWSSESErrorLimitExceeded`. @see AWSSESCloneReceiptRuleSetRequest @see AWSSESCloneReceiptRuleSetResponse */ - (AWSTask *)cloneReceiptRuleSet:(AWSSESCloneReceiptRuleSetRequest *)request; /**

Creates a receipt rule set by cloning an existing one. All receipt rules and configurations are copied to the new receipt rule set and are completely independent of the source rule set.

For information about setting up rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CloneReceiptRuleSet service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleSetDoesNotExist`, `AWSSESErrorAlreadyExists`, `AWSSESErrorLimitExceeded`. @see AWSSESCloneReceiptRuleSetRequest @see AWSSESCloneReceiptRuleSetResponse */ - (void)cloneReceiptRuleSet:(AWSSESCloneReceiptRuleSetRequest *)request completionHandler:(void (^ _Nullable)(AWSSESCloneReceiptRuleSetResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Creates a configuration set.

Configuration sets enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateConfigurationSet service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESCreateConfigurationSetResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetAlreadyExists`, `AWSSESErrorInvalidConfigurationSet`, `AWSSESErrorLimitExceeded`. @see AWSSESCreateConfigurationSetRequest @see AWSSESCreateConfigurationSetResponse */ - (AWSTask *)createConfigurationSet:(AWSSESCreateConfigurationSetRequest *)request; /**

Creates a configuration set.

Configuration sets enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateConfigurationSet service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetAlreadyExists`, `AWSSESErrorInvalidConfigurationSet`, `AWSSESErrorLimitExceeded`. @see AWSSESCreateConfigurationSetRequest @see AWSSESCreateConfigurationSetResponse */ - (void)createConfigurationSet:(AWSSESCreateConfigurationSetRequest *)request completionHandler:(void (^ _Nullable)(AWSSESCreateConfigurationSetResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Creates a configuration set event destination.

When you create or update an event destination, you must provide one, and only one, destination. The destination can be CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS).

An event destination is the AWS service to which Amazon SES publishes the email sending events associated with a configuration set. For information about using configuration sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateConfigurationSetEventDestination service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESCreateConfigurationSetEventDestinationResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorEventDestinationAlreadyExists`, `AWSSESErrorInvalidCloudWatchDestination`, `AWSSESErrorInvalidFirehoseDestination`, `AWSSESErrorInvalidSNSDestination`, `AWSSESErrorLimitExceeded`. @see AWSSESCreateConfigurationSetEventDestinationRequest @see AWSSESCreateConfigurationSetEventDestinationResponse */ - (AWSTask *)createConfigurationSetEventDestination:(AWSSESCreateConfigurationSetEventDestinationRequest *)request; /**

Creates a configuration set event destination.

When you create or update an event destination, you must provide one, and only one, destination. The destination can be CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS).

An event destination is the AWS service to which Amazon SES publishes the email sending events associated with a configuration set. For information about using configuration sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateConfigurationSetEventDestination service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorEventDestinationAlreadyExists`, `AWSSESErrorInvalidCloudWatchDestination`, `AWSSESErrorInvalidFirehoseDestination`, `AWSSESErrorInvalidSNSDestination`, `AWSSESErrorLimitExceeded`. @see AWSSESCreateConfigurationSetEventDestinationRequest @see AWSSESCreateConfigurationSetEventDestinationResponse */ - (void)createConfigurationSetEventDestination:(AWSSESCreateConfigurationSetEventDestinationRequest *)request completionHandler:(void (^ _Nullable)(AWSSESCreateConfigurationSetEventDestinationResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Creates an association between a configuration set and a custom domain for open and click event tracking.

By default, images and links used for tracking open and click events are hosted on domains operated by Amazon SES. You can configure a subdomain of your own to handle these events. For information about using custom domains, see the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the CreateConfigurationSetTrackingOptions service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESCreateConfigurationSetTrackingOptionsResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorTrackingOptionsAlreadyExists`, `AWSSESErrorInvalidTrackingOptions`. @see AWSSESCreateConfigurationSetTrackingOptionsRequest @see AWSSESCreateConfigurationSetTrackingOptionsResponse */ - (AWSTask *)createConfigurationSetTrackingOptions:(AWSSESCreateConfigurationSetTrackingOptionsRequest *)request; /**

Creates an association between a configuration set and a custom domain for open and click event tracking.

By default, images and links used for tracking open and click events are hosted on domains operated by Amazon SES. You can configure a subdomain of your own to handle these events. For information about using custom domains, see the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the CreateConfigurationSetTrackingOptions service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorTrackingOptionsAlreadyExists`, `AWSSESErrorInvalidTrackingOptions`. @see AWSSESCreateConfigurationSetTrackingOptionsRequest @see AWSSESCreateConfigurationSetTrackingOptionsResponse */ - (void)createConfigurationSetTrackingOptions:(AWSSESCreateConfigurationSetTrackingOptionsRequest *)request completionHandler:(void (^ _Nullable)(AWSSESCreateConfigurationSetTrackingOptionsResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Creates a new custom verification email template.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateCustomVerificationEmailTemplate service method. @return An instance of `AWSTask`. On successful execution, `task.result` will be `nil`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorCustomVerificationEmailTemplateAlreadyExists`, `AWSSESErrorFromEmailAddressNotVerified`, `AWSSESErrorCustomVerificationEmailInvalidContent`, `AWSSESErrorLimitExceeded`. @see AWSSESCreateCustomVerificationEmailTemplateRequest */ - (AWSTask *)createCustomVerificationEmailTemplate:(AWSSESCreateCustomVerificationEmailTemplateRequest *)request; /**

Creates a new custom verification email template.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateCustomVerificationEmailTemplate service method. @param completionHandler The completion handler to call when the load request is complete. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorCustomVerificationEmailTemplateAlreadyExists`, `AWSSESErrorFromEmailAddressNotVerified`, `AWSSESErrorCustomVerificationEmailInvalidContent`, `AWSSESErrorLimitExceeded`. @see AWSSESCreateCustomVerificationEmailTemplateRequest */ - (void)createCustomVerificationEmailTemplate:(AWSSESCreateCustomVerificationEmailTemplateRequest *)request completionHandler:(void (^ _Nullable)(NSError * _Nullable error))completionHandler; /**

Creates a new IP address filter.

For information about setting up IP address filters, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateReceiptFilter service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESCreateReceiptFilterResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorLimitExceeded`, `AWSSESErrorAlreadyExists`. @see AWSSESCreateReceiptFilterRequest @see AWSSESCreateReceiptFilterResponse */ - (AWSTask *)createReceiptFilter:(AWSSESCreateReceiptFilterRequest *)request; /**

Creates a new IP address filter.

For information about setting up IP address filters, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateReceiptFilter service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorLimitExceeded`, `AWSSESErrorAlreadyExists`. @see AWSSESCreateReceiptFilterRequest @see AWSSESCreateReceiptFilterResponse */ - (void)createReceiptFilter:(AWSSESCreateReceiptFilterRequest *)request completionHandler:(void (^ _Nullable)(AWSSESCreateReceiptFilterResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Creates a receipt rule.

For information about setting up receipt rules, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateReceiptRule service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESCreateReceiptRuleResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorInvalidSnsTopic`, `AWSSESErrorInvalidS3Configuration`, `AWSSESErrorInvalidLambdaFunction`, `AWSSESErrorAlreadyExists`, `AWSSESErrorRuleDoesNotExist`, `AWSSESErrorRuleSetDoesNotExist`, `AWSSESErrorLimitExceeded`. @see AWSSESCreateReceiptRuleRequest @see AWSSESCreateReceiptRuleResponse */ - (AWSTask *)createReceiptRule:(AWSSESCreateReceiptRuleRequest *)request; /**

Creates a receipt rule.

For information about setting up receipt rules, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateReceiptRule service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorInvalidSnsTopic`, `AWSSESErrorInvalidS3Configuration`, `AWSSESErrorInvalidLambdaFunction`, `AWSSESErrorAlreadyExists`, `AWSSESErrorRuleDoesNotExist`, `AWSSESErrorRuleSetDoesNotExist`, `AWSSESErrorLimitExceeded`. @see AWSSESCreateReceiptRuleRequest @see AWSSESCreateReceiptRuleResponse */ - (void)createReceiptRule:(AWSSESCreateReceiptRuleRequest *)request completionHandler:(void (^ _Nullable)(AWSSESCreateReceiptRuleResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Creates an empty receipt rule set.

For information about setting up receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateReceiptRuleSet service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESCreateReceiptRuleSetResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorAlreadyExists`, `AWSSESErrorLimitExceeded`. @see AWSSESCreateReceiptRuleSetRequest @see AWSSESCreateReceiptRuleSetResponse */ - (AWSTask *)createReceiptRuleSet:(AWSSESCreateReceiptRuleSetRequest *)request; /**

Creates an empty receipt rule set.

For information about setting up receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateReceiptRuleSet service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorAlreadyExists`, `AWSSESErrorLimitExceeded`. @see AWSSESCreateReceiptRuleSetRequest @see AWSSESCreateReceiptRuleSetResponse */ - (void)createReceiptRuleSet:(AWSSESCreateReceiptRuleSetRequest *)request completionHandler:(void (^ _Nullable)(AWSSESCreateReceiptRuleSetResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Creates an email template. Email templates enable you to send personalized email to one or more destinations in a single API operation. For more information, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateTemplate service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESCreateTemplateResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorAlreadyExists`, `AWSSESErrorInvalidTemplate`, `AWSSESErrorLimitExceeded`. @see AWSSESCreateTemplateRequest @see AWSSESCreateTemplateResponse */ - (AWSTask *)createTemplate:(AWSSESCreateTemplateRequest *)request; /**

Creates an email template. Email templates enable you to send personalized email to one or more destinations in a single API operation. For more information, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the CreateTemplate service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorAlreadyExists`, `AWSSESErrorInvalidTemplate`, `AWSSESErrorLimitExceeded`. @see AWSSESCreateTemplateRequest @see AWSSESCreateTemplateResponse */ - (void)createTemplate:(AWSSESCreateTemplateRequest *)request completionHandler:(void (^ _Nullable)(AWSSESCreateTemplateResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Deletes a configuration set. Configuration sets enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteConfigurationSet service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESDeleteConfigurationSetResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`. @see AWSSESDeleteConfigurationSetRequest @see AWSSESDeleteConfigurationSetResponse */ - (AWSTask *)deleteConfigurationSet:(AWSSESDeleteConfigurationSetRequest *)request; /**

Deletes a configuration set. Configuration sets enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteConfigurationSet service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`. @see AWSSESDeleteConfigurationSetRequest @see AWSSESDeleteConfigurationSetResponse */ - (void)deleteConfigurationSet:(AWSSESDeleteConfigurationSetRequest *)request completionHandler:(void (^ _Nullable)(AWSSESDeleteConfigurationSetResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Deletes a configuration set event destination. Configuration set event destinations are associated with configuration sets, which enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteConfigurationSetEventDestination service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESDeleteConfigurationSetEventDestinationResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorEventDestinationDoesNotExist`. @see AWSSESDeleteConfigurationSetEventDestinationRequest @see AWSSESDeleteConfigurationSetEventDestinationResponse */ - (AWSTask *)deleteConfigurationSetEventDestination:(AWSSESDeleteConfigurationSetEventDestinationRequest *)request; /**

Deletes a configuration set event destination. Configuration set event destinations are associated with configuration sets, which enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteConfigurationSetEventDestination service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorEventDestinationDoesNotExist`. @see AWSSESDeleteConfigurationSetEventDestinationRequest @see AWSSESDeleteConfigurationSetEventDestinationResponse */ - (void)deleteConfigurationSetEventDestination:(AWSSESDeleteConfigurationSetEventDestinationRequest *)request completionHandler:(void (^ _Nullable)(AWSSESDeleteConfigurationSetEventDestinationResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Deletes an association between a configuration set and a custom domain for open and click event tracking.

By default, images and links used for tracking open and click events are hosted on domains operated by Amazon SES. You can configure a subdomain of your own to handle these events. For information about using custom domains, see the Amazon SES Developer Guide.

Deleting this kind of association will result in emails sent using the specified configuration set to capture open and click events using the standard, Amazon SES-operated domains.

@param request A container for the necessary parameters to execute the DeleteConfigurationSetTrackingOptions service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESDeleteConfigurationSetTrackingOptionsResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorTrackingOptionsDoesNotExist`. @see AWSSESDeleteConfigurationSetTrackingOptionsRequest @see AWSSESDeleteConfigurationSetTrackingOptionsResponse */ - (AWSTask *)deleteConfigurationSetTrackingOptions:(AWSSESDeleteConfigurationSetTrackingOptionsRequest *)request; /**

Deletes an association between a configuration set and a custom domain for open and click event tracking.

By default, images and links used for tracking open and click events are hosted on domains operated by Amazon SES. You can configure a subdomain of your own to handle these events. For information about using custom domains, see the Amazon SES Developer Guide.

Deleting this kind of association will result in emails sent using the specified configuration set to capture open and click events using the standard, Amazon SES-operated domains.

@param request A container for the necessary parameters to execute the DeleteConfigurationSetTrackingOptions service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorTrackingOptionsDoesNotExist`. @see AWSSESDeleteConfigurationSetTrackingOptionsRequest @see AWSSESDeleteConfigurationSetTrackingOptionsResponse */ - (void)deleteConfigurationSetTrackingOptions:(AWSSESDeleteConfigurationSetTrackingOptionsRequest *)request completionHandler:(void (^ _Nullable)(AWSSESDeleteConfigurationSetTrackingOptionsResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Deletes an existing custom verification email template.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteCustomVerificationEmailTemplate service method. @return An instance of `AWSTask`. On successful execution, `task.result` will be `nil`. @see AWSSESDeleteCustomVerificationEmailTemplateRequest */ - (AWSTask *)deleteCustomVerificationEmailTemplate:(AWSSESDeleteCustomVerificationEmailTemplateRequest *)request; /**

Deletes an existing custom verification email template.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteCustomVerificationEmailTemplate service method. @param completionHandler The completion handler to call when the load request is complete. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESDeleteCustomVerificationEmailTemplateRequest */ - (void)deleteCustomVerificationEmailTemplate:(AWSSESDeleteCustomVerificationEmailTemplateRequest *)request completionHandler:(void (^ _Nullable)(NSError * _Nullable error))completionHandler; /**

Deletes the specified identity (an email address or a domain) from the list of verified identities.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteIdentity service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESDeleteIdentityResponse`. @see AWSSESDeleteIdentityRequest @see AWSSESDeleteIdentityResponse */ - (AWSTask *)deleteIdentity:(AWSSESDeleteIdentityRequest *)request; /**

Deletes the specified identity (an email address or a domain) from the list of verified identities.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteIdentity service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESDeleteIdentityRequest @see AWSSESDeleteIdentityResponse */ - (void)deleteIdentity:(AWSSESDeleteIdentityRequest *)request completionHandler:(void (^ _Nullable)(AWSSESDeleteIdentityResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Deletes the specified sending authorization policy for the given identity (an email address or a domain). This API returns successfully even if a policy with the specified name does not exist.

This API is for the identity owner only. If you have not verified the identity, this API will return an error.

Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteIdentityPolicy service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESDeleteIdentityPolicyResponse`. @see AWSSESDeleteIdentityPolicyRequest @see AWSSESDeleteIdentityPolicyResponse */ - (AWSTask *)deleteIdentityPolicy:(AWSSESDeleteIdentityPolicyRequest *)request; /**

Deletes the specified sending authorization policy for the given identity (an email address or a domain). This API returns successfully even if a policy with the specified name does not exist.

This API is for the identity owner only. If you have not verified the identity, this API will return an error.

Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteIdentityPolicy service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESDeleteIdentityPolicyRequest @see AWSSESDeleteIdentityPolicyResponse */ - (void)deleteIdentityPolicy:(AWSSESDeleteIdentityPolicyRequest *)request completionHandler:(void (^ _Nullable)(AWSSESDeleteIdentityPolicyResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Deletes the specified IP address filter.

For information about managing IP address filters, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteReceiptFilter service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESDeleteReceiptFilterResponse`. @see AWSSESDeleteReceiptFilterRequest @see AWSSESDeleteReceiptFilterResponse */ - (AWSTask *)deleteReceiptFilter:(AWSSESDeleteReceiptFilterRequest *)request; /**

Deletes the specified IP address filter.

For information about managing IP address filters, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteReceiptFilter service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESDeleteReceiptFilterRequest @see AWSSESDeleteReceiptFilterResponse */ - (void)deleteReceiptFilter:(AWSSESDeleteReceiptFilterRequest *)request completionHandler:(void (^ _Nullable)(AWSSESDeleteReceiptFilterResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Deletes the specified receipt rule.

For information about managing receipt rules, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteReceiptRule service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESDeleteReceiptRuleResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleSetDoesNotExist`. @see AWSSESDeleteReceiptRuleRequest @see AWSSESDeleteReceiptRuleResponse */ - (AWSTask *)deleteReceiptRule:(AWSSESDeleteReceiptRuleRequest *)request; /**

Deletes the specified receipt rule.

For information about managing receipt rules, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteReceiptRule service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleSetDoesNotExist`. @see AWSSESDeleteReceiptRuleRequest @see AWSSESDeleteReceiptRuleResponse */ - (void)deleteReceiptRule:(AWSSESDeleteReceiptRuleRequest *)request completionHandler:(void (^ _Nullable)(AWSSESDeleteReceiptRuleResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Deletes the specified receipt rule set and all of the receipt rules it contains.

The currently active rule set cannot be deleted.

For information about managing receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteReceiptRuleSet service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESDeleteReceiptRuleSetResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorCannotDelete`. @see AWSSESDeleteReceiptRuleSetRequest @see AWSSESDeleteReceiptRuleSetResponse */ - (AWSTask *)deleteReceiptRuleSet:(AWSSESDeleteReceiptRuleSetRequest *)request; /**

Deletes the specified receipt rule set and all of the receipt rules it contains.

The currently active rule set cannot be deleted.

For information about managing receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteReceiptRuleSet service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorCannotDelete`. @see AWSSESDeleteReceiptRuleSetRequest @see AWSSESDeleteReceiptRuleSetResponse */ - (void)deleteReceiptRuleSet:(AWSSESDeleteReceiptRuleSetRequest *)request completionHandler:(void (^ _Nullable)(AWSSESDeleteReceiptRuleSetResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Deletes an email template.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteTemplate service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESDeleteTemplateResponse`. @see AWSSESDeleteTemplateRequest @see AWSSESDeleteTemplateResponse */ - (AWSTask *)deleteTemplate:(AWSSESDeleteTemplateRequest *)request; /**

Deletes an email template.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DeleteTemplate service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESDeleteTemplateRequest @see AWSSESDeleteTemplateResponse */ - (void)deleteTemplate:(AWSSESDeleteTemplateRequest *)request completionHandler:(void (^ _Nullable)(AWSSESDeleteTemplateResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Deprecated. Use the DeleteIdentity operation to delete email addresses and domains.

@param request A container for the necessary parameters to execute the DeleteVerifiedEmailAddress service method. @return An instance of `AWSTask`. On successful execution, `task.result` will be `nil`. @see AWSSESDeleteVerifiedEmailAddressRequest */ - (AWSTask *)deleteVerifiedEmailAddress:(AWSSESDeleteVerifiedEmailAddressRequest *)request; /**

Deprecated. Use the DeleteIdentity operation to delete email addresses and domains.

@param request A container for the necessary parameters to execute the DeleteVerifiedEmailAddress service method. @param completionHandler The completion handler to call when the load request is complete. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESDeleteVerifiedEmailAddressRequest */ - (void)deleteVerifiedEmailAddress:(AWSSESDeleteVerifiedEmailAddressRequest *)request completionHandler:(void (^ _Nullable)(NSError * _Nullable error))completionHandler; /**

Returns the metadata and receipt rules for the receipt rule set that is currently active.

For information about setting up receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DescribeActiveReceiptRuleSet service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESDescribeActiveReceiptRuleSetResponse`. @see AWSSESDescribeActiveReceiptRuleSetRequest @see AWSSESDescribeActiveReceiptRuleSetResponse */ - (AWSTask *)describeActiveReceiptRuleSet:(AWSSESDescribeActiveReceiptRuleSetRequest *)request; /**

Returns the metadata and receipt rules for the receipt rule set that is currently active.

For information about setting up receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DescribeActiveReceiptRuleSet service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESDescribeActiveReceiptRuleSetRequest @see AWSSESDescribeActiveReceiptRuleSetResponse */ - (void)describeActiveReceiptRuleSet:(AWSSESDescribeActiveReceiptRuleSetRequest *)request completionHandler:(void (^ _Nullable)(AWSSESDescribeActiveReceiptRuleSetResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Returns the details of the specified configuration set. For information about using configuration sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DescribeConfigurationSet service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESDescribeConfigurationSetResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`. @see AWSSESDescribeConfigurationSetRequest @see AWSSESDescribeConfigurationSetResponse */ - (AWSTask *)describeConfigurationSet:(AWSSESDescribeConfigurationSetRequest *)request; /**

Returns the details of the specified configuration set. For information about using configuration sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DescribeConfigurationSet service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`. @see AWSSESDescribeConfigurationSetRequest @see AWSSESDescribeConfigurationSetResponse */ - (void)describeConfigurationSet:(AWSSESDescribeConfigurationSetRequest *)request completionHandler:(void (^ _Nullable)(AWSSESDescribeConfigurationSetResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Returns the details of the specified receipt rule.

For information about setting up receipt rules, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DescribeReceiptRule service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESDescribeReceiptRuleResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleDoesNotExist`, `AWSSESErrorRuleSetDoesNotExist`. @see AWSSESDescribeReceiptRuleRequest @see AWSSESDescribeReceiptRuleResponse */ - (AWSTask *)describeReceiptRule:(AWSSESDescribeReceiptRuleRequest *)request; /**

Returns the details of the specified receipt rule.

For information about setting up receipt rules, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DescribeReceiptRule service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleDoesNotExist`, `AWSSESErrorRuleSetDoesNotExist`. @see AWSSESDescribeReceiptRuleRequest @see AWSSESDescribeReceiptRuleResponse */ - (void)describeReceiptRule:(AWSSESDescribeReceiptRuleRequest *)request completionHandler:(void (^ _Nullable)(AWSSESDescribeReceiptRuleResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Returns the details of the specified receipt rule set.

For information about managing receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DescribeReceiptRuleSet service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESDescribeReceiptRuleSetResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleSetDoesNotExist`. @see AWSSESDescribeReceiptRuleSetRequest @see AWSSESDescribeReceiptRuleSetResponse */ - (AWSTask *)describeReceiptRuleSet:(AWSSESDescribeReceiptRuleSetRequest *)request; /**

Returns the details of the specified receipt rule set.

For information about managing receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the DescribeReceiptRuleSet service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleSetDoesNotExist`. @see AWSSESDescribeReceiptRuleSetRequest @see AWSSESDescribeReceiptRuleSetResponse */ - (void)describeReceiptRuleSet:(AWSSESDescribeReceiptRuleSetRequest *)request completionHandler:(void (^ _Nullable)(AWSSESDescribeReceiptRuleSetResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Returns the email sending status of the Amazon SES account for the current region.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the GetAccountSendingEnabled service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESGetAccountSendingEnabledResponse`. @see AWSRequest @see AWSSESGetAccountSendingEnabledResponse */ - (AWSTask *)getAccountSendingEnabled:(AWSRequest *)request; /**

Returns the email sending status of the Amazon SES account for the current region.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the GetAccountSendingEnabled service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSRequest @see AWSSESGetAccountSendingEnabledResponse */ - (void)getAccountSendingEnabled:(AWSRequest *)request completionHandler:(void (^ _Nullable)(AWSSESGetAccountSendingEnabledResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Returns the custom email verification template for the template name you specify.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the GetCustomVerificationEmailTemplate service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESGetCustomVerificationEmailTemplateResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorCustomVerificationEmailTemplateDoesNotExist`. @see AWSSESGetCustomVerificationEmailTemplateRequest @see AWSSESGetCustomVerificationEmailTemplateResponse */ - (AWSTask *)getCustomVerificationEmailTemplate:(AWSSESGetCustomVerificationEmailTemplateRequest *)request; /**

Returns the custom email verification template for the template name you specify.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the GetCustomVerificationEmailTemplate service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorCustomVerificationEmailTemplateDoesNotExist`. @see AWSSESGetCustomVerificationEmailTemplateRequest @see AWSSESGetCustomVerificationEmailTemplateResponse */ - (void)getCustomVerificationEmailTemplate:(AWSSESGetCustomVerificationEmailTemplateRequest *)request completionHandler:(void (^ _Nullable)(AWSSESGetCustomVerificationEmailTemplateResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Returns the current status of Easy DKIM signing for an entity. For domain name identities, this operation also returns the DKIM tokens that are required for Easy DKIM signing, and whether Amazon SES has successfully verified that these tokens have been published.

This operation takes a list of identities as input and returns the following information for each:

  • Whether Easy DKIM signing is enabled or disabled.

  • A set of DKIM tokens that represent the identity. If the identity is an email address, the tokens represent the domain of that address.

  • Whether Amazon SES has successfully verified the DKIM tokens published in the domain's DNS. This information is only returned for domain name identities, not for email addresses.

This operation is throttled at one request per second and can only get DKIM attributes for up to 100 identities at a time.

For more information about creating DNS records using DKIM tokens, go to the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the GetIdentityDkimAttributes service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESGetIdentityDkimAttributesResponse`. @see AWSSESGetIdentityDkimAttributesRequest @see AWSSESGetIdentityDkimAttributesResponse */ - (AWSTask *)getIdentityDkimAttributes:(AWSSESGetIdentityDkimAttributesRequest *)request; /**

Returns the current status of Easy DKIM signing for an entity. For domain name identities, this operation also returns the DKIM tokens that are required for Easy DKIM signing, and whether Amazon SES has successfully verified that these tokens have been published.

This operation takes a list of identities as input and returns the following information for each:

  • Whether Easy DKIM signing is enabled or disabled.

  • A set of DKIM tokens that represent the identity. If the identity is an email address, the tokens represent the domain of that address.

  • Whether Amazon SES has successfully verified the DKIM tokens published in the domain's DNS. This information is only returned for domain name identities, not for email addresses.

This operation is throttled at one request per second and can only get DKIM attributes for up to 100 identities at a time.

For more information about creating DNS records using DKIM tokens, go to the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the GetIdentityDkimAttributes service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESGetIdentityDkimAttributesRequest @see AWSSESGetIdentityDkimAttributesResponse */ - (void)getIdentityDkimAttributes:(AWSSESGetIdentityDkimAttributesRequest *)request completionHandler:(void (^ _Nullable)(AWSSESGetIdentityDkimAttributesResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Returns the custom MAIL FROM attributes for a list of identities (email addresses : domains).

This operation is throttled at one request per second and can only get custom MAIL FROM attributes for up to 100 identities at a time.

@param request A container for the necessary parameters to execute the GetIdentityMailFromDomainAttributes service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESGetIdentityMailFromDomainAttributesResponse`. @see AWSSESGetIdentityMailFromDomainAttributesRequest @see AWSSESGetIdentityMailFromDomainAttributesResponse */ - (AWSTask *)getIdentityMailFromDomainAttributes:(AWSSESGetIdentityMailFromDomainAttributesRequest *)request; /**

Returns the custom MAIL FROM attributes for a list of identities (email addresses : domains).

This operation is throttled at one request per second and can only get custom MAIL FROM attributes for up to 100 identities at a time.

@param request A container for the necessary parameters to execute the GetIdentityMailFromDomainAttributes service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESGetIdentityMailFromDomainAttributesRequest @see AWSSESGetIdentityMailFromDomainAttributesResponse */ - (void)getIdentityMailFromDomainAttributes:(AWSSESGetIdentityMailFromDomainAttributesRequest *)request completionHandler:(void (^ _Nullable)(AWSSESGetIdentityMailFromDomainAttributesResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Given a list of verified identities (email addresses and/or domains), returns a structure describing identity notification attributes.

This operation is throttled at one request per second and can only get notification attributes for up to 100 identities at a time.

For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the GetIdentityNotificationAttributes service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESGetIdentityNotificationAttributesResponse`. @see AWSSESGetIdentityNotificationAttributesRequest @see AWSSESGetIdentityNotificationAttributesResponse */ - (AWSTask *)getIdentityNotificationAttributes:(AWSSESGetIdentityNotificationAttributesRequest *)request; /**

Given a list of verified identities (email addresses and/or domains), returns a structure describing identity notification attributes.

This operation is throttled at one request per second and can only get notification attributes for up to 100 identities at a time.

For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the GetIdentityNotificationAttributes service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESGetIdentityNotificationAttributesRequest @see AWSSESGetIdentityNotificationAttributesResponse */ - (void)getIdentityNotificationAttributes:(AWSSESGetIdentityNotificationAttributesRequest *)request completionHandler:(void (^ _Nullable)(AWSSESGetIdentityNotificationAttributesResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Returns the requested sending authorization policies for the given identity (an email address or a domain). The policies are returned as a map of policy names to policy contents. You can retrieve a maximum of 20 policies at a time.

This API is for the identity owner only. If you have not verified the identity, this API will return an error.

Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the GetIdentityPolicies service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESGetIdentityPoliciesResponse`. @see AWSSESGetIdentityPoliciesRequest @see AWSSESGetIdentityPoliciesResponse */ - (AWSTask *)getIdentityPolicies:(AWSSESGetIdentityPoliciesRequest *)request; /**

Returns the requested sending authorization policies for the given identity (an email address or a domain). The policies are returned as a map of policy names to policy contents. You can retrieve a maximum of 20 policies at a time.

This API is for the identity owner only. If you have not verified the identity, this API will return an error.

Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the GetIdentityPolicies service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESGetIdentityPoliciesRequest @see AWSSESGetIdentityPoliciesResponse */ - (void)getIdentityPolicies:(AWSSESGetIdentityPoliciesRequest *)request completionHandler:(void (^ _Nullable)(AWSSESGetIdentityPoliciesResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Given a list of identities (email addresses and/or domains), returns the verification status and (for domain identities) the verification token for each identity.

The verification status of an email address is "Pending" until the email address owner clicks the link within the verification email that Amazon SES sent to that address. If the email address owner clicks the link within 24 hours, the verification status of the email address changes to "Success". If the link is not clicked within 24 hours, the verification status changes to "Failed." In that case, if you still want to verify the email address, you must restart the verification process from the beginning.

For domain identities, the domain's verification status is "Pending" as Amazon SES searches for the required TXT record in the DNS settings of the domain. When Amazon SES detects the record, the domain's verification status changes to "Success". If Amazon SES is unable to detect the record within 72 hours, the domain's verification status changes to "Failed." In that case, if you still want to verify the domain, you must restart the verification process from the beginning.

This operation is throttled at one request per second and can only get verification attributes for up to 100 identities at a time.

@param request A container for the necessary parameters to execute the GetIdentityVerificationAttributes service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESGetIdentityVerificationAttributesResponse`. @see AWSSESGetIdentityVerificationAttributesRequest @see AWSSESGetIdentityVerificationAttributesResponse */ - (AWSTask *)getIdentityVerificationAttributes:(AWSSESGetIdentityVerificationAttributesRequest *)request; /**

Given a list of identities (email addresses and/or domains), returns the verification status and (for domain identities) the verification token for each identity.

The verification status of an email address is "Pending" until the email address owner clicks the link within the verification email that Amazon SES sent to that address. If the email address owner clicks the link within 24 hours, the verification status of the email address changes to "Success". If the link is not clicked within 24 hours, the verification status changes to "Failed." In that case, if you still want to verify the email address, you must restart the verification process from the beginning.

For domain identities, the domain's verification status is "Pending" as Amazon SES searches for the required TXT record in the DNS settings of the domain. When Amazon SES detects the record, the domain's verification status changes to "Success". If Amazon SES is unable to detect the record within 72 hours, the domain's verification status changes to "Failed." In that case, if you still want to verify the domain, you must restart the verification process from the beginning.

This operation is throttled at one request per second and can only get verification attributes for up to 100 identities at a time.

@param request A container for the necessary parameters to execute the GetIdentityVerificationAttributes service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESGetIdentityVerificationAttributesRequest @see AWSSESGetIdentityVerificationAttributesResponse */ - (void)getIdentityVerificationAttributes:(AWSSESGetIdentityVerificationAttributesRequest *)request completionHandler:(void (^ _Nullable)(AWSSESGetIdentityVerificationAttributesResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Provides the sending limits for the Amazon SES account.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the GetSendQuota service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESGetSendQuotaResponse`. @see AWSRequest @see AWSSESGetSendQuotaResponse */ - (AWSTask *)getSendQuota:(AWSRequest *)request; /**

Provides the sending limits for the Amazon SES account.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the GetSendQuota service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSRequest @see AWSSESGetSendQuotaResponse */ - (void)getSendQuota:(AWSRequest *)request completionHandler:(void (^ _Nullable)(AWSSESGetSendQuotaResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Provides sending statistics for the current AWS Region. The result is a list of data points, representing the last two weeks of sending activity. Each data point in the list contains statistics for a 15-minute period of time.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the GetSendStatistics service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESGetSendStatisticsResponse`. @see AWSRequest @see AWSSESGetSendStatisticsResponse */ - (AWSTask *)getSendStatistics:(AWSRequest *)request; /**

Provides sending statistics for the current AWS Region. The result is a list of data points, representing the last two weeks of sending activity. Each data point in the list contains statistics for a 15-minute period of time.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the GetSendStatistics service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSRequest @see AWSSESGetSendStatisticsResponse */ - (void)getSendStatistics:(AWSRequest *)request completionHandler:(void (^ _Nullable)(AWSSESGetSendStatisticsResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Displays the template object (which includes the Subject line, HTML part and text part) for the template you specify.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the GetTemplate service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESGetTemplateResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorTemplateDoesNotExist`. @see AWSSESGetTemplateRequest @see AWSSESGetTemplateResponse */ - (AWSTask *)getTemplate:(AWSSESGetTemplateRequest *)request; /**

Displays the template object (which includes the Subject line, HTML part and text part) for the template you specify.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the GetTemplate service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorTemplateDoesNotExist`. @see AWSSESGetTemplateRequest @see AWSSESGetTemplateResponse */ - (void)getTemplate:(AWSSESGetTemplateRequest *)request completionHandler:(void (^ _Nullable)(AWSSESGetTemplateResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Provides a list of the configuration sets associated with your Amazon SES account in the current AWS Region. For information about using configuration sets, see Monitoring Your Amazon SES Sending Activity in the Amazon SES Developer Guide.

You can execute this operation no more than once per second. This operation will return up to 1,000 configuration sets each time it is run. If your Amazon SES account has more than 1,000 configuration sets, this operation will also return a NextToken element. You can then execute the ListConfigurationSets operation again, passing the NextToken parameter and the value of the NextToken element to retrieve additional results.

@param request A container for the necessary parameters to execute the ListConfigurationSets service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESListConfigurationSetsResponse`. @see AWSSESListConfigurationSetsRequest @see AWSSESListConfigurationSetsResponse */ - (AWSTask *)listConfigurationSets:(AWSSESListConfigurationSetsRequest *)request; /**

Provides a list of the configuration sets associated with your Amazon SES account in the current AWS Region. For information about using configuration sets, see Monitoring Your Amazon SES Sending Activity in the Amazon SES Developer Guide.

You can execute this operation no more than once per second. This operation will return up to 1,000 configuration sets each time it is run. If your Amazon SES account has more than 1,000 configuration sets, this operation will also return a NextToken element. You can then execute the ListConfigurationSets operation again, passing the NextToken parameter and the value of the NextToken element to retrieve additional results.

@param request A container for the necessary parameters to execute the ListConfigurationSets service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESListConfigurationSetsRequest @see AWSSESListConfigurationSetsResponse */ - (void)listConfigurationSets:(AWSSESListConfigurationSetsRequest *)request completionHandler:(void (^ _Nullable)(AWSSESListConfigurationSetsResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Lists the existing custom verification email templates for your account in the current AWS Region.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ListCustomVerificationEmailTemplates service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESListCustomVerificationEmailTemplatesResponse`. @see AWSSESListCustomVerificationEmailTemplatesRequest @see AWSSESListCustomVerificationEmailTemplatesResponse */ - (AWSTask *)listCustomVerificationEmailTemplates:(AWSSESListCustomVerificationEmailTemplatesRequest *)request; /**

Lists the existing custom verification email templates for your account in the current AWS Region.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ListCustomVerificationEmailTemplates service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESListCustomVerificationEmailTemplatesRequest @see AWSSESListCustomVerificationEmailTemplatesResponse */ - (void)listCustomVerificationEmailTemplates:(AWSSESListCustomVerificationEmailTemplatesRequest *)request completionHandler:(void (^ _Nullable)(AWSSESListCustomVerificationEmailTemplatesResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Returns a list containing all of the identities (email addresses and domains) for your AWS account in the current AWS Region, regardless of verification status.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ListIdentities service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESListIdentitiesResponse`. @see AWSSESListIdentitiesRequest @see AWSSESListIdentitiesResponse */ - (AWSTask *)listIdentities:(AWSSESListIdentitiesRequest *)request; /**

Returns a list containing all of the identities (email addresses and domains) for your AWS account in the current AWS Region, regardless of verification status.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ListIdentities service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESListIdentitiesRequest @see AWSSESListIdentitiesResponse */ - (void)listIdentities:(AWSSESListIdentitiesRequest *)request completionHandler:(void (^ _Nullable)(AWSSESListIdentitiesResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Returns a list of sending authorization policies that are attached to the given identity (an email address or a domain). This API returns only a list. If you want the actual policy content, you can use GetIdentityPolicies.

This API is for the identity owner only. If you have not verified the identity, this API will return an error.

Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ListIdentityPolicies service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESListIdentityPoliciesResponse`. @see AWSSESListIdentityPoliciesRequest @see AWSSESListIdentityPoliciesResponse */ - (AWSTask *)listIdentityPolicies:(AWSSESListIdentityPoliciesRequest *)request; /**

Returns a list of sending authorization policies that are attached to the given identity (an email address or a domain). This API returns only a list. If you want the actual policy content, you can use GetIdentityPolicies.

This API is for the identity owner only. If you have not verified the identity, this API will return an error.

Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ListIdentityPolicies service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESListIdentityPoliciesRequest @see AWSSESListIdentityPoliciesResponse */ - (void)listIdentityPolicies:(AWSSESListIdentityPoliciesRequest *)request completionHandler:(void (^ _Nullable)(AWSSESListIdentityPoliciesResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Lists the IP address filters associated with your AWS account in the current AWS Region.

For information about managing IP address filters, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ListReceiptFilters service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESListReceiptFiltersResponse`. @see AWSSESListReceiptFiltersRequest @see AWSSESListReceiptFiltersResponse */ - (AWSTask *)listReceiptFilters:(AWSSESListReceiptFiltersRequest *)request; /**

Lists the IP address filters associated with your AWS account in the current AWS Region.

For information about managing IP address filters, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ListReceiptFilters service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESListReceiptFiltersRequest @see AWSSESListReceiptFiltersResponse */ - (void)listReceiptFilters:(AWSSESListReceiptFiltersRequest *)request completionHandler:(void (^ _Nullable)(AWSSESListReceiptFiltersResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Lists the receipt rule sets that exist under your AWS account in the current AWS Region. If there are additional receipt rule sets to be retrieved, you will receive a NextToken that you can provide to the next call to ListReceiptRuleSets to retrieve the additional entries.

For information about managing receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ListReceiptRuleSets service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESListReceiptRuleSetsResponse`. @see AWSSESListReceiptRuleSetsRequest @see AWSSESListReceiptRuleSetsResponse */ - (AWSTask *)listReceiptRuleSets:(AWSSESListReceiptRuleSetsRequest *)request; /**

Lists the receipt rule sets that exist under your AWS account in the current AWS Region. If there are additional receipt rule sets to be retrieved, you will receive a NextToken that you can provide to the next call to ListReceiptRuleSets to retrieve the additional entries.

For information about managing receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ListReceiptRuleSets service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESListReceiptRuleSetsRequest @see AWSSESListReceiptRuleSetsResponse */ - (void)listReceiptRuleSets:(AWSSESListReceiptRuleSetsRequest *)request completionHandler:(void (^ _Nullable)(AWSSESListReceiptRuleSetsResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Lists the email templates present in your Amazon SES account in the current AWS Region.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ListTemplates service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESListTemplatesResponse`. @see AWSSESListTemplatesRequest @see AWSSESListTemplatesResponse */ - (AWSTask *)listTemplates:(AWSSESListTemplatesRequest *)request; /**

Lists the email templates present in your Amazon SES account in the current AWS Region.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ListTemplates service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESListTemplatesRequest @see AWSSESListTemplatesResponse */ - (void)listTemplates:(AWSSESListTemplatesRequest *)request completionHandler:(void (^ _Nullable)(AWSSESListTemplatesResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Deprecated. Use the ListIdentities operation to list the email addresses and domains associated with your account.

@param request A container for the necessary parameters to execute the ListVerifiedEmailAddresses service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESListVerifiedEmailAddressesResponse`. @see AWSRequest @see AWSSESListVerifiedEmailAddressesResponse */ - (AWSTask *)listVerifiedEmailAddresses:(AWSRequest *)request; /**

Deprecated. Use the ListIdentities operation to list the email addresses and domains associated with your account.

@param request A container for the necessary parameters to execute the ListVerifiedEmailAddresses service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSRequest @see AWSSESListVerifiedEmailAddressesResponse */ - (void)listVerifiedEmailAddresses:(AWSRequest *)request completionHandler:(void (^ _Nullable)(AWSSESListVerifiedEmailAddressesResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Adds or updates the delivery options for a configuration set.

@param request A container for the necessary parameters to execute the PutConfigurationSetDeliveryOptions service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESPutConfigurationSetDeliveryOptionsResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorInvalidDeliveryOptions`. @see AWSSESPutConfigurationSetDeliveryOptionsRequest @see AWSSESPutConfigurationSetDeliveryOptionsResponse */ - (AWSTask *)putConfigurationSetDeliveryOptions:(AWSSESPutConfigurationSetDeliveryOptionsRequest *)request; /**

Adds or updates the delivery options for a configuration set.

@param request A container for the necessary parameters to execute the PutConfigurationSetDeliveryOptions service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorInvalidDeliveryOptions`. @see AWSSESPutConfigurationSetDeliveryOptionsRequest @see AWSSESPutConfigurationSetDeliveryOptionsResponse */ - (void)putConfigurationSetDeliveryOptions:(AWSSESPutConfigurationSetDeliveryOptionsRequest *)request completionHandler:(void (^ _Nullable)(AWSSESPutConfigurationSetDeliveryOptionsResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Adds or updates a sending authorization policy for the specified identity (an email address or a domain).

This API is for the identity owner only. If you have not verified the identity, this API will return an error.

Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the PutIdentityPolicy service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESPutIdentityPolicyResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorInvalidPolicy`. @see AWSSESPutIdentityPolicyRequest @see AWSSESPutIdentityPolicyResponse */ - (AWSTask *)putIdentityPolicy:(AWSSESPutIdentityPolicyRequest *)request; /**

Adds or updates a sending authorization policy for the specified identity (an email address or a domain).

This API is for the identity owner only. If you have not verified the identity, this API will return an error.

Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the PutIdentityPolicy service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorInvalidPolicy`. @see AWSSESPutIdentityPolicyRequest @see AWSSESPutIdentityPolicyResponse */ - (void)putIdentityPolicy:(AWSSESPutIdentityPolicyRequest *)request completionHandler:(void (^ _Nullable)(AWSSESPutIdentityPolicyResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Reorders the receipt rules within a receipt rule set.

All of the rules in the rule set must be represented in this request. That is, this API will return an error if the reorder request doesn't explicitly position all of the rules.

For information about managing receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ReorderReceiptRuleSet service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESReorderReceiptRuleSetResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleSetDoesNotExist`, `AWSSESErrorRuleDoesNotExist`. @see AWSSESReorderReceiptRuleSetRequest @see AWSSESReorderReceiptRuleSetResponse */ - (AWSTask *)reorderReceiptRuleSet:(AWSSESReorderReceiptRuleSetRequest *)request; /**

Reorders the receipt rules within a receipt rule set.

All of the rules in the rule set must be represented in this request. That is, this API will return an error if the reorder request doesn't explicitly position all of the rules.

For information about managing receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the ReorderReceiptRuleSet service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleSetDoesNotExist`, `AWSSESErrorRuleDoesNotExist`. @see AWSSESReorderReceiptRuleSetRequest @see AWSSESReorderReceiptRuleSetResponse */ - (void)reorderReceiptRuleSet:(AWSSESReorderReceiptRuleSetRequest *)request completionHandler:(void (^ _Nullable)(AWSSESReorderReceiptRuleSetResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Generates and sends a bounce message to the sender of an email you received through Amazon SES. You can only use this API on an email up to 24 hours after you receive it.

You cannot use this API to send generic bounces for mail that was not received by Amazon SES.

For information about receiving email through Amazon SES, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the SendBounce service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESSendBounceResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorMessageRejected`. @see AWSSESSendBounceRequest @see AWSSESSendBounceResponse */ - (AWSTask *)sendBounce:(AWSSESSendBounceRequest *)request; /**

Generates and sends a bounce message to the sender of an email you received through Amazon SES. You can only use this API on an email up to 24 hours after you receive it.

You cannot use this API to send generic bounces for mail that was not received by Amazon SES.

For information about receiving email through Amazon SES, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the SendBounce service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorMessageRejected`. @see AWSSESSendBounceRequest @see AWSSESSendBounceResponse */ - (void)sendBounce:(AWSSESSendBounceRequest *)request completionHandler:(void (^ _Nullable)(AWSSESSendBounceResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Composes an email message to multiple destinations. The message body is created using an email template.

In order to send email using the SendBulkTemplatedEmail operation, your call to the API must meet the following requirements:

  • The call must refer to an existing email template. You can create email templates using the CreateTemplate operation.

  • The message must be sent from a verified email address or domain.

  • If your account is still in the Amazon SES sandbox, you may only send to verified addresses or domains, or to email addresses associated with the Amazon SES Mailbox Simulator. For more information, see Verifying Email Addresses and Domains in the Amazon SES Developer Guide.

  • The maximum message size is 10 MB.

  • Each Destination parameter must include at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If a recipient email address is invalid (that is, it is not in the format UserName@[SubDomain.]Domain.TopLevelDomain), the entire message will be rejected, even if the message contains other recipients that are valid.

  • The message may not include more than 50 recipients, across the To:, CC: and BCC: fields. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call the SendBulkTemplatedEmail operation several times to send the message to each group.

  • The number of destinations you can contact in a single call to the API may be limited by your account's maximum sending rate.

@param request A container for the necessary parameters to execute the SendBulkTemplatedEmail service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESSendBulkTemplatedEmailResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorMessageRejected`, `AWSSESErrorMailFromDomainNotVerified`, `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorTemplateDoesNotExist`, `AWSSESErrorConfigurationSetSendingPaused`, `AWSSESErrorAccountSendingPaused`. @see AWSSESSendBulkTemplatedEmailRequest @see AWSSESSendBulkTemplatedEmailResponse */ - (AWSTask *)sendBulkTemplatedEmail:(AWSSESSendBulkTemplatedEmailRequest *)request; /**

Composes an email message to multiple destinations. The message body is created using an email template.

In order to send email using the SendBulkTemplatedEmail operation, your call to the API must meet the following requirements:

  • The call must refer to an existing email template. You can create email templates using the CreateTemplate operation.

  • The message must be sent from a verified email address or domain.

  • If your account is still in the Amazon SES sandbox, you may only send to verified addresses or domains, or to email addresses associated with the Amazon SES Mailbox Simulator. For more information, see Verifying Email Addresses and Domains in the Amazon SES Developer Guide.

  • The maximum message size is 10 MB.

  • Each Destination parameter must include at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If a recipient email address is invalid (that is, it is not in the format UserName@[SubDomain.]Domain.TopLevelDomain), the entire message will be rejected, even if the message contains other recipients that are valid.

  • The message may not include more than 50 recipients, across the To:, CC: and BCC: fields. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call the SendBulkTemplatedEmail operation several times to send the message to each group.

  • The number of destinations you can contact in a single call to the API may be limited by your account's maximum sending rate.

@param request A container for the necessary parameters to execute the SendBulkTemplatedEmail service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorMessageRejected`, `AWSSESErrorMailFromDomainNotVerified`, `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorTemplateDoesNotExist`, `AWSSESErrorConfigurationSetSendingPaused`, `AWSSESErrorAccountSendingPaused`. @see AWSSESSendBulkTemplatedEmailRequest @see AWSSESSendBulkTemplatedEmailResponse */ - (void)sendBulkTemplatedEmail:(AWSSESSendBulkTemplatedEmailRequest *)request completionHandler:(void (^ _Nullable)(AWSSESSendBulkTemplatedEmailResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Adds an email address to the list of identities for your Amazon SES account in the current AWS Region and attempts to verify it. As a result of executing this operation, a customized verification email is sent to the specified address.

To use this operation, you must first create a custom verification email template. For more information about creating and using custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the SendCustomVerificationEmail service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESSendCustomVerificationEmailResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorMessageRejected`, `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorCustomVerificationEmailTemplateDoesNotExist`, `AWSSESErrorFromEmailAddressNotVerified`, `AWSSESErrorProductionAccessNotGranted`. @see AWSSESSendCustomVerificationEmailRequest @see AWSSESSendCustomVerificationEmailResponse */ - (AWSTask *)sendCustomVerificationEmail:(AWSSESSendCustomVerificationEmailRequest *)request; /**

Adds an email address to the list of identities for your Amazon SES account in the current AWS Region and attempts to verify it. As a result of executing this operation, a customized verification email is sent to the specified address.

To use this operation, you must first create a custom verification email template. For more information about creating and using custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the SendCustomVerificationEmail service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorMessageRejected`, `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorCustomVerificationEmailTemplateDoesNotExist`, `AWSSESErrorFromEmailAddressNotVerified`, `AWSSESErrorProductionAccessNotGranted`. @see AWSSESSendCustomVerificationEmailRequest @see AWSSESSendCustomVerificationEmailResponse */ - (void)sendCustomVerificationEmail:(AWSSESSendCustomVerificationEmailRequest *)request completionHandler:(void (^ _Nullable)(AWSSESSendCustomVerificationEmailResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Composes an email message and immediately queues it for sending. In order to send email using the SendEmail operation, your message must meet the following requirements:

  • The message must be sent from a verified email address or domain. If you attempt to send email using a non-verified address or domain, the operation will result in an "Email address not verified" error.

  • If your account is still in the Amazon SES sandbox, you may only send to verified addresses or domains, or to email addresses associated with the Amazon SES Mailbox Simulator. For more information, see Verifying Email Addresses and Domains in the Amazon SES Developer Guide.

  • The maximum message size is 10 MB.

  • The message must include at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If a recipient email address is invalid (that is, it is not in the format UserName@[SubDomain.]Domain.TopLevelDomain), the entire message will be rejected, even if the message contains other recipients that are valid.

  • The message may not include more than 50 recipients, across the To:, CC: and BCC: fields. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call the SendEmail operation several times to send the message to each group.

For every message that you send, the total number of recipients (including each recipient in the To:, CC: and BCC: fields) is counted against the maximum number of emails you can send in a 24-hour period (your sending quota). For more information about sending quotas in Amazon SES, see Managing Your Amazon SES Sending Limits in the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the SendEmail service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESSendEmailResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorMessageRejected`, `AWSSESErrorMailFromDomainNotVerified`, `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorConfigurationSetSendingPaused`, `AWSSESErrorAccountSendingPaused`. @see AWSSESSendEmailRequest @see AWSSESSendEmailResponse */ - (AWSTask *)sendEmail:(AWSSESSendEmailRequest *)request; /**

Composes an email message and immediately queues it for sending. In order to send email using the SendEmail operation, your message must meet the following requirements:

  • The message must be sent from a verified email address or domain. If you attempt to send email using a non-verified address or domain, the operation will result in an "Email address not verified" error.

  • If your account is still in the Amazon SES sandbox, you may only send to verified addresses or domains, or to email addresses associated with the Amazon SES Mailbox Simulator. For more information, see Verifying Email Addresses and Domains in the Amazon SES Developer Guide.

  • The maximum message size is 10 MB.

  • The message must include at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If a recipient email address is invalid (that is, it is not in the format UserName@[SubDomain.]Domain.TopLevelDomain), the entire message will be rejected, even if the message contains other recipients that are valid.

  • The message may not include more than 50 recipients, across the To:, CC: and BCC: fields. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call the SendEmail operation several times to send the message to each group.

For every message that you send, the total number of recipients (including each recipient in the To:, CC: and BCC: fields) is counted against the maximum number of emails you can send in a 24-hour period (your sending quota). For more information about sending quotas in Amazon SES, see Managing Your Amazon SES Sending Limits in the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the SendEmail service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorMessageRejected`, `AWSSESErrorMailFromDomainNotVerified`, `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorConfigurationSetSendingPaused`, `AWSSESErrorAccountSendingPaused`. @see AWSSESSendEmailRequest @see AWSSESSendEmailResponse */ - (void)sendEmail:(AWSSESSendEmailRequest *)request completionHandler:(void (^ _Nullable)(AWSSESSendEmailResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Composes an email message and immediately queues it for sending.

This operation is more flexible than the SendEmail API operation. When you use the SendRawEmail operation, you can specify the headers of the message as well as its content. This flexibility is useful, for example, when you want to send a multipart MIME email (such a message that contains both a text and an HTML version). You can also use this operation to send messages that include attachments.

The SendRawEmail operation has the following requirements:

  • You can only send email from verified email addresses or domains. If you try to send email from an address that isn't verified, the operation results in an "Email address not verified" error.

  • If your account is still in the Amazon SES sandbox, you can only send email to other verified addresses in your account, or to addresses that are associated with the Amazon SES mailbox simulator.

  • The maximum message size, including attachments, is 10 MB.

  • Each message has to include at least one recipient address. A recipient address includes any address on the To:, CC:, or BCC: lines.

  • If you send a single message to more than one recipient address, and one of the recipient addresses isn't in a valid format (that is, it's not in the format UserName@[SubDomain.]Domain.TopLevelDomain), Amazon SES rejects the entire message, even if the other addresses are valid.

  • Each message can include up to 50 recipient addresses across the To:, CC:, or BCC: lines. If you need to send a single message to more than 50 recipients, you have to split the list of recipient addresses into groups of less than 50 recipients, and send separate messages to each group.

  • Amazon SES allows you to specify 8-bit Content-Transfer-Encoding for MIME message parts. However, if Amazon SES has to modify the contents of your message (for example, if you use open and click tracking), 8-bit content isn't preserved. For this reason, we highly recommend that you encode all content that isn't 7-bit ASCII. For more information, see MIME Encoding in the Amazon SES Developer Guide.

Additionally, keep the following considerations in mind when using the SendRawEmail operation:

  • Although you can customize the message headers when using the SendRawEmail operation, Amazon SES will automatically apply its own Message-ID and Date headers; if you passed these headers when creating the message, they will be overwritten by the values that Amazon SES provides.

  • If you are using sending authorization to send on behalf of another user, SendRawEmail enables you to specify the cross-account identity for the email's Source, From, and Return-Path parameters in one of two ways: you can pass optional parameters SourceArn, FromArn, and/or ReturnPathArn to the API, or you can include the following X-headers in the header of your raw email:

    • X-SES-SOURCE-ARN

    • X-SES-FROM-ARN

    • X-SES-RETURN-PATH-ARN

    Don't include these X-headers in the DKIM signature. Amazon SES removes these before it sends the email.

    If you only specify the SourceIdentityArn parameter, Amazon SES sets the From and Return-Path addresses to the same identity that you specified.

    For more information about sending authorization, see the Using Sending Authorization with Amazon SES in the Amazon SES Developer Guide.

  • For every message that you send, the total number of recipients (including each recipient in the To:, CC: and BCC: fields) is counted against the maximum number of emails you can send in a 24-hour period (your sending quota). For more information about sending quotas in Amazon SES, see Managing Your Amazon SES Sending Limits in the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the SendRawEmail service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESSendRawEmailResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorMessageRejected`, `AWSSESErrorMailFromDomainNotVerified`, `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorConfigurationSetSendingPaused`, `AWSSESErrorAccountSendingPaused`. @see AWSSESSendRawEmailRequest @see AWSSESSendRawEmailResponse */ - (AWSTask *)sendRawEmail:(AWSSESSendRawEmailRequest *)request; /**

Composes an email message and immediately queues it for sending.

This operation is more flexible than the SendEmail API operation. When you use the SendRawEmail operation, you can specify the headers of the message as well as its content. This flexibility is useful, for example, when you want to send a multipart MIME email (such a message that contains both a text and an HTML version). You can also use this operation to send messages that include attachments.

The SendRawEmail operation has the following requirements:

  • You can only send email from verified email addresses or domains. If you try to send email from an address that isn't verified, the operation results in an "Email address not verified" error.

  • If your account is still in the Amazon SES sandbox, you can only send email to other verified addresses in your account, or to addresses that are associated with the Amazon SES mailbox simulator.

  • The maximum message size, including attachments, is 10 MB.

  • Each message has to include at least one recipient address. A recipient address includes any address on the To:, CC:, or BCC: lines.

  • If you send a single message to more than one recipient address, and one of the recipient addresses isn't in a valid format (that is, it's not in the format UserName@[SubDomain.]Domain.TopLevelDomain), Amazon SES rejects the entire message, even if the other addresses are valid.

  • Each message can include up to 50 recipient addresses across the To:, CC:, or BCC: lines. If you need to send a single message to more than 50 recipients, you have to split the list of recipient addresses into groups of less than 50 recipients, and send separate messages to each group.

  • Amazon SES allows you to specify 8-bit Content-Transfer-Encoding for MIME message parts. However, if Amazon SES has to modify the contents of your message (for example, if you use open and click tracking), 8-bit content isn't preserved. For this reason, we highly recommend that you encode all content that isn't 7-bit ASCII. For more information, see MIME Encoding in the Amazon SES Developer Guide.

Additionally, keep the following considerations in mind when using the SendRawEmail operation:

  • Although you can customize the message headers when using the SendRawEmail operation, Amazon SES will automatically apply its own Message-ID and Date headers; if you passed these headers when creating the message, they will be overwritten by the values that Amazon SES provides.

  • If you are using sending authorization to send on behalf of another user, SendRawEmail enables you to specify the cross-account identity for the email's Source, From, and Return-Path parameters in one of two ways: you can pass optional parameters SourceArn, FromArn, and/or ReturnPathArn to the API, or you can include the following X-headers in the header of your raw email:

    • X-SES-SOURCE-ARN

    • X-SES-FROM-ARN

    • X-SES-RETURN-PATH-ARN

    Don't include these X-headers in the DKIM signature. Amazon SES removes these before it sends the email.

    If you only specify the SourceIdentityArn parameter, Amazon SES sets the From and Return-Path addresses to the same identity that you specified.

    For more information about sending authorization, see the Using Sending Authorization with Amazon SES in the Amazon SES Developer Guide.

  • For every message that you send, the total number of recipients (including each recipient in the To:, CC: and BCC: fields) is counted against the maximum number of emails you can send in a 24-hour period (your sending quota). For more information about sending quotas in Amazon SES, see Managing Your Amazon SES Sending Limits in the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the SendRawEmail service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorMessageRejected`, `AWSSESErrorMailFromDomainNotVerified`, `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorConfigurationSetSendingPaused`, `AWSSESErrorAccountSendingPaused`. @see AWSSESSendRawEmailRequest @see AWSSESSendRawEmailResponse */ - (void)sendRawEmail:(AWSSESSendRawEmailRequest *)request completionHandler:(void (^ _Nullable)(AWSSESSendRawEmailResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Composes an email message using an email template and immediately queues it for sending.

In order to send email using the SendTemplatedEmail operation, your call to the API must meet the following requirements:

  • The call must refer to an existing email template. You can create email templates using the CreateTemplate operation.

  • The message must be sent from a verified email address or domain.

  • If your account is still in the Amazon SES sandbox, you may only send to verified addresses or domains, or to email addresses associated with the Amazon SES Mailbox Simulator. For more information, see Verifying Email Addresses and Domains in the Amazon SES Developer Guide.

  • The maximum message size is 10 MB.

  • Calls to the SendTemplatedEmail operation may only include one Destination parameter. A destination is a set of recipients who will receive the same version of the email. The Destination parameter can include up to 50 recipients, across the To:, CC: and BCC: fields.

  • The Destination parameter must include at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If a recipient email address is invalid (that is, it is not in the format UserName@[SubDomain.]Domain.TopLevelDomain), the entire message will be rejected, even if the message contains other recipients that are valid.

If your call to the SendTemplatedEmail operation includes all of the required parameters, Amazon SES accepts it and returns a Message ID. However, if Amazon SES can't render the email because the template contains errors, it doesn't send the email. Additionally, because it already accepted the message, Amazon SES doesn't return a message stating that it was unable to send the email.

For these reasons, we highly recommend that you set up Amazon SES to send you notifications when Rendering Failure events occur. For more information, see Sending Personalized Email Using the Amazon SES API in the Amazon Simple Email Service Developer Guide.

@param request A container for the necessary parameters to execute the SendTemplatedEmail service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESSendTemplatedEmailResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorMessageRejected`, `AWSSESErrorMailFromDomainNotVerified`, `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorTemplateDoesNotExist`, `AWSSESErrorConfigurationSetSendingPaused`, `AWSSESErrorAccountSendingPaused`. @see AWSSESSendTemplatedEmailRequest @see AWSSESSendTemplatedEmailResponse */ - (AWSTask *)sendTemplatedEmail:(AWSSESSendTemplatedEmailRequest *)request; /**

Composes an email message using an email template and immediately queues it for sending.

In order to send email using the SendTemplatedEmail operation, your call to the API must meet the following requirements:

  • The call must refer to an existing email template. You can create email templates using the CreateTemplate operation.

  • The message must be sent from a verified email address or domain.

  • If your account is still in the Amazon SES sandbox, you may only send to verified addresses or domains, or to email addresses associated with the Amazon SES Mailbox Simulator. For more information, see Verifying Email Addresses and Domains in the Amazon SES Developer Guide.

  • The maximum message size is 10 MB.

  • Calls to the SendTemplatedEmail operation may only include one Destination parameter. A destination is a set of recipients who will receive the same version of the email. The Destination parameter can include up to 50 recipients, across the To:, CC: and BCC: fields.

  • The Destination parameter must include at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If a recipient email address is invalid (that is, it is not in the format UserName@[SubDomain.]Domain.TopLevelDomain), the entire message will be rejected, even if the message contains other recipients that are valid.

If your call to the SendTemplatedEmail operation includes all of the required parameters, Amazon SES accepts it and returns a Message ID. However, if Amazon SES can't render the email because the template contains errors, it doesn't send the email. Additionally, because it already accepted the message, Amazon SES doesn't return a message stating that it was unable to send the email.

For these reasons, we highly recommend that you set up Amazon SES to send you notifications when Rendering Failure events occur. For more information, see Sending Personalized Email Using the Amazon SES API in the Amazon Simple Email Service Developer Guide.

@param request A container for the necessary parameters to execute the SendTemplatedEmail service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorMessageRejected`, `AWSSESErrorMailFromDomainNotVerified`, `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorTemplateDoesNotExist`, `AWSSESErrorConfigurationSetSendingPaused`, `AWSSESErrorAccountSendingPaused`. @see AWSSESSendTemplatedEmailRequest @see AWSSESSendTemplatedEmailResponse */ - (void)sendTemplatedEmail:(AWSSESSendTemplatedEmailRequest *)request completionHandler:(void (^ _Nullable)(AWSSESSendTemplatedEmailResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Sets the specified receipt rule set as the active receipt rule set.

To disable your email-receiving through Amazon SES completely, you can call this API with RuleSetName set to null.

For information about managing receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the SetActiveReceiptRuleSet service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESSetActiveReceiptRuleSetResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleSetDoesNotExist`. @see AWSSESSetActiveReceiptRuleSetRequest @see AWSSESSetActiveReceiptRuleSetResponse */ - (AWSTask *)setActiveReceiptRuleSet:(AWSSESSetActiveReceiptRuleSetRequest *)request; /**

Sets the specified receipt rule set as the active receipt rule set.

To disable your email-receiving through Amazon SES completely, you can call this API with RuleSetName set to null.

For information about managing receipt rule sets, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the SetActiveReceiptRuleSet service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleSetDoesNotExist`. @see AWSSESSetActiveReceiptRuleSetRequest @see AWSSESSetActiveReceiptRuleSetResponse */ - (void)setActiveReceiptRuleSet:(AWSSESSetActiveReceiptRuleSetRequest *)request completionHandler:(void (^ _Nullable)(AWSSESSetActiveReceiptRuleSetResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Enables or disables Easy DKIM signing of email sent from an identity. If Easy DKIM signing is enabled for a domain, then Amazon SES uses DKIM to sign all email that it sends from addresses on that domain. If Easy DKIM signing is enabled for an email address, then Amazon SES uses DKIM to sign all email it sends from that address.

For email addresses (for example, user@example.com), you can only enable DKIM signing if the corresponding domain (in this case, example.com) has been set up to use Easy DKIM.

You can enable DKIM signing for an identity at any time after you start the verification process for the identity, even if the verification process isn't complete.

You can execute this operation no more than once per second.

For more information about Easy DKIM signing, go to the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the SetIdentityDkimEnabled service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESSetIdentityDkimEnabledResponse`. @see AWSSESSetIdentityDkimEnabledRequest @see AWSSESSetIdentityDkimEnabledResponse */ - (AWSTask *)setIdentityDkimEnabled:(AWSSESSetIdentityDkimEnabledRequest *)request; /**

Enables or disables Easy DKIM signing of email sent from an identity. If Easy DKIM signing is enabled for a domain, then Amazon SES uses DKIM to sign all email that it sends from addresses on that domain. If Easy DKIM signing is enabled for an email address, then Amazon SES uses DKIM to sign all email it sends from that address.

For email addresses (for example, user@example.com), you can only enable DKIM signing if the corresponding domain (in this case, example.com) has been set up to use Easy DKIM.

You can enable DKIM signing for an identity at any time after you start the verification process for the identity, even if the verification process isn't complete.

You can execute this operation no more than once per second.

For more information about Easy DKIM signing, go to the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the SetIdentityDkimEnabled service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESSetIdentityDkimEnabledRequest @see AWSSESSetIdentityDkimEnabledResponse */ - (void)setIdentityDkimEnabled:(AWSSESSetIdentityDkimEnabledRequest *)request completionHandler:(void (^ _Nullable)(AWSSESSetIdentityDkimEnabledResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Given an identity (an email address or a domain), enables or disables whether Amazon SES forwards bounce and complaint notifications as email. Feedback forwarding can only be disabled when Amazon Simple Notification Service (Amazon SNS) topics are specified for both bounces and complaints.

Feedback forwarding does not apply to delivery notifications. Delivery notifications are only available through Amazon SNS.

You can execute this operation no more than once per second.

For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the SetIdentityFeedbackForwardingEnabled service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESSetIdentityFeedbackForwardingEnabledResponse`. @see AWSSESSetIdentityFeedbackForwardingEnabledRequest @see AWSSESSetIdentityFeedbackForwardingEnabledResponse */ - (AWSTask *)setIdentityFeedbackForwardingEnabled:(AWSSESSetIdentityFeedbackForwardingEnabledRequest *)request; /**

Given an identity (an email address or a domain), enables or disables whether Amazon SES forwards bounce and complaint notifications as email. Feedback forwarding can only be disabled when Amazon Simple Notification Service (Amazon SNS) topics are specified for both bounces and complaints.

Feedback forwarding does not apply to delivery notifications. Delivery notifications are only available through Amazon SNS.

You can execute this operation no more than once per second.

For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the SetIdentityFeedbackForwardingEnabled service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESSetIdentityFeedbackForwardingEnabledRequest @see AWSSESSetIdentityFeedbackForwardingEnabledResponse */ - (void)setIdentityFeedbackForwardingEnabled:(AWSSESSetIdentityFeedbackForwardingEnabledRequest *)request completionHandler:(void (^ _Nullable)(AWSSESSetIdentityFeedbackForwardingEnabledResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Given an identity (an email address or a domain), sets whether Amazon SES includes the original email headers in the Amazon Simple Notification Service (Amazon SNS) notifications of a specified type.

You can execute this operation no more than once per second.

For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the SetIdentityHeadersInNotificationsEnabled service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESSetIdentityHeadersInNotificationsEnabledResponse`. @see AWSSESSetIdentityHeadersInNotificationsEnabledRequest @see AWSSESSetIdentityHeadersInNotificationsEnabledResponse */ - (AWSTask *)setIdentityHeadersInNotificationsEnabled:(AWSSESSetIdentityHeadersInNotificationsEnabledRequest *)request; /**

Given an identity (an email address or a domain), sets whether Amazon SES includes the original email headers in the Amazon Simple Notification Service (Amazon SNS) notifications of a specified type.

You can execute this operation no more than once per second.

For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the SetIdentityHeadersInNotificationsEnabled service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESSetIdentityHeadersInNotificationsEnabledRequest @see AWSSESSetIdentityHeadersInNotificationsEnabledResponse */ - (void)setIdentityHeadersInNotificationsEnabled:(AWSSESSetIdentityHeadersInNotificationsEnabledRequest *)request completionHandler:(void (^ _Nullable)(AWSSESSetIdentityHeadersInNotificationsEnabledResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Enables or disables the custom MAIL FROM domain setup for a verified identity (an email address or a domain).

To send emails using the specified MAIL FROM domain, you must add an MX record to your MAIL FROM domain's DNS settings. If you want your emails to pass Sender Policy Framework (SPF) checks, you must also add or update an SPF record. For more information, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the SetIdentityMailFromDomain service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESSetIdentityMailFromDomainResponse`. @see AWSSESSetIdentityMailFromDomainRequest @see AWSSESSetIdentityMailFromDomainResponse */ - (AWSTask *)setIdentityMailFromDomain:(AWSSESSetIdentityMailFromDomainRequest *)request; /**

Enables or disables the custom MAIL FROM domain setup for a verified identity (an email address or a domain).

To send emails using the specified MAIL FROM domain, you must add an MX record to your MAIL FROM domain's DNS settings. If you want your emails to pass Sender Policy Framework (SPF) checks, you must also add or update an SPF record. For more information, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the SetIdentityMailFromDomain service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESSetIdentityMailFromDomainRequest @see AWSSESSetIdentityMailFromDomainResponse */ - (void)setIdentityMailFromDomain:(AWSSESSetIdentityMailFromDomainRequest *)request completionHandler:(void (^ _Nullable)(AWSSESSetIdentityMailFromDomainResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Sets an Amazon Simple Notification Service (Amazon SNS) topic to use when delivering notifications. When you use this operation, you specify a verified identity, such as an email address or domain. When you send an email that uses the chosen identity in the Source field, Amazon SES sends notifications to the topic you specified. You can send bounce, complaint, or delivery notifications (or any combination of the three) to the Amazon SNS topic that you specify.

You can execute this operation no more than once per second.

For more information about feedback notification, see the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the SetIdentityNotificationTopic service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESSetIdentityNotificationTopicResponse`. @see AWSSESSetIdentityNotificationTopicRequest @see AWSSESSetIdentityNotificationTopicResponse */ - (AWSTask *)setIdentityNotificationTopic:(AWSSESSetIdentityNotificationTopicRequest *)request; /**

Sets an Amazon Simple Notification Service (Amazon SNS) topic to use when delivering notifications. When you use this operation, you specify a verified identity, such as an email address or domain. When you send an email that uses the chosen identity in the Source field, Amazon SES sends notifications to the topic you specified. You can send bounce, complaint, or delivery notifications (or any combination of the three) to the Amazon SNS topic that you specify.

You can execute this operation no more than once per second.

For more information about feedback notification, see the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the SetIdentityNotificationTopic service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESSetIdentityNotificationTopicRequest @see AWSSESSetIdentityNotificationTopicResponse */ - (void)setIdentityNotificationTopic:(AWSSESSetIdentityNotificationTopicRequest *)request completionHandler:(void (^ _Nullable)(AWSSESSetIdentityNotificationTopicResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Sets the position of the specified receipt rule in the receipt rule set.

For information about managing receipt rules, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the SetReceiptRulePosition service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESSetReceiptRulePositionResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleSetDoesNotExist`, `AWSSESErrorRuleDoesNotExist`. @see AWSSESSetReceiptRulePositionRequest @see AWSSESSetReceiptRulePositionResponse */ - (AWSTask *)setReceiptRulePosition:(AWSSESSetReceiptRulePositionRequest *)request; /**

Sets the position of the specified receipt rule in the receipt rule set.

For information about managing receipt rules, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the SetReceiptRulePosition service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorRuleSetDoesNotExist`, `AWSSESErrorRuleDoesNotExist`. @see AWSSESSetReceiptRulePositionRequest @see AWSSESSetReceiptRulePositionResponse */ - (void)setReceiptRulePosition:(AWSSESSetReceiptRulePositionRequest *)request completionHandler:(void (^ _Nullable)(AWSSESSetReceiptRulePositionResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Creates a preview of the MIME content of an email when provided with a template and a set of replacement data.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the TestRenderTemplate service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESTestRenderTemplateResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorTemplateDoesNotExist`, `AWSSESErrorInvalidRenderingParameter`, `AWSSESErrorMissingRenderingAttribute`. @see AWSSESTestRenderTemplateRequest @see AWSSESTestRenderTemplateResponse */ - (AWSTask *)testRenderTemplate:(AWSSESTestRenderTemplateRequest *)request; /**

Creates a preview of the MIME content of an email when provided with a template and a set of replacement data.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the TestRenderTemplate service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorTemplateDoesNotExist`, `AWSSESErrorInvalidRenderingParameter`, `AWSSESErrorMissingRenderingAttribute`. @see AWSSESTestRenderTemplateRequest @see AWSSESTestRenderTemplateResponse */ - (void)testRenderTemplate:(AWSSESTestRenderTemplateRequest *)request completionHandler:(void (^ _Nullable)(AWSSESTestRenderTemplateResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Enables or disables email sending across your entire Amazon SES account in the current AWS Region. You can use this operation in conjunction with Amazon CloudWatch alarms to temporarily pause email sending across your Amazon SES account in a given AWS Region when reputation metrics (such as your bounce or complaint rates) reach certain thresholds.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateAccountSendingEnabled service method. @return An instance of `AWSTask`. On successful execution, `task.result` will be `nil`. @see AWSSESUpdateAccountSendingEnabledRequest */ - (AWSTask *)updateAccountSendingEnabled:(AWSSESUpdateAccountSendingEnabledRequest *)request; /**

Enables or disables email sending across your entire Amazon SES account in the current AWS Region. You can use this operation in conjunction with Amazon CloudWatch alarms to temporarily pause email sending across your Amazon SES account in a given AWS Region when reputation metrics (such as your bounce or complaint rates) reach certain thresholds.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateAccountSendingEnabled service method. @param completionHandler The completion handler to call when the load request is complete. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESUpdateAccountSendingEnabledRequest */ - (void)updateAccountSendingEnabled:(AWSSESUpdateAccountSendingEnabledRequest *)request completionHandler:(void (^ _Nullable)(NSError * _Nullable error))completionHandler; /**

Updates the event destination of a configuration set. Event destinations are associated with configuration sets, which enable you to publish email sending events to Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS). For information about using configuration sets, see Monitoring Your Amazon SES Sending Activity in the Amazon SES Developer Guide.

When you create or update an event destination, you must provide one, and only one, destination. The destination can be Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS).

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateConfigurationSetEventDestination service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESUpdateConfigurationSetEventDestinationResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorEventDestinationDoesNotExist`, `AWSSESErrorInvalidCloudWatchDestination`, `AWSSESErrorInvalidFirehoseDestination`, `AWSSESErrorInvalidSNSDestination`. @see AWSSESUpdateConfigurationSetEventDestinationRequest @see AWSSESUpdateConfigurationSetEventDestinationResponse */ - (AWSTask *)updateConfigurationSetEventDestination:(AWSSESUpdateConfigurationSetEventDestinationRequest *)request; /**

Updates the event destination of a configuration set. Event destinations are associated with configuration sets, which enable you to publish email sending events to Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS). For information about using configuration sets, see Monitoring Your Amazon SES Sending Activity in the Amazon SES Developer Guide.

When you create or update an event destination, you must provide one, and only one, destination. The destination can be Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS).

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateConfigurationSetEventDestination service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorEventDestinationDoesNotExist`, `AWSSESErrorInvalidCloudWatchDestination`, `AWSSESErrorInvalidFirehoseDestination`, `AWSSESErrorInvalidSNSDestination`. @see AWSSESUpdateConfigurationSetEventDestinationRequest @see AWSSESUpdateConfigurationSetEventDestinationResponse */ - (void)updateConfigurationSetEventDestination:(AWSSESUpdateConfigurationSetEventDestinationRequest *)request completionHandler:(void (^ _Nullable)(AWSSESUpdateConfigurationSetEventDestinationResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Enables or disables the publishing of reputation metrics for emails sent using a specific configuration set in a given AWS Region. Reputation metrics include bounce and complaint rates. These metrics are published to Amazon CloudWatch. By using CloudWatch, you can create alarms when bounce or complaint rates exceed certain thresholds.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateConfigurationSetReputationMetricsEnabled service method. @return An instance of `AWSTask`. On successful execution, `task.result` will be `nil`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`. @see AWSSESUpdateConfigurationSetReputationMetricsEnabledRequest */ - (AWSTask *)updateConfigurationSetReputationMetricsEnabled:(AWSSESUpdateConfigurationSetReputationMetricsEnabledRequest *)request; /**

Enables or disables the publishing of reputation metrics for emails sent using a specific configuration set in a given AWS Region. Reputation metrics include bounce and complaint rates. These metrics are published to Amazon CloudWatch. By using CloudWatch, you can create alarms when bounce or complaint rates exceed certain thresholds.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateConfigurationSetReputationMetricsEnabled service method. @param completionHandler The completion handler to call when the load request is complete. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`. @see AWSSESUpdateConfigurationSetReputationMetricsEnabledRequest */ - (void)updateConfigurationSetReputationMetricsEnabled:(AWSSESUpdateConfigurationSetReputationMetricsEnabledRequest *)request completionHandler:(void (^ _Nullable)(NSError * _Nullable error))completionHandler; /**

Enables or disables email sending for messages sent using a specific configuration set in a given AWS Region. You can use this operation in conjunction with Amazon CloudWatch alarms to temporarily pause email sending for a configuration set when the reputation metrics for that configuration set (such as your bounce on complaint rate) exceed certain thresholds.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateConfigurationSetSendingEnabled service method. @return An instance of `AWSTask`. On successful execution, `task.result` will be `nil`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`. @see AWSSESUpdateConfigurationSetSendingEnabledRequest */ - (AWSTask *)updateConfigurationSetSendingEnabled:(AWSSESUpdateConfigurationSetSendingEnabledRequest *)request; /**

Enables or disables email sending for messages sent using a specific configuration set in a given AWS Region. You can use this operation in conjunction with Amazon CloudWatch alarms to temporarily pause email sending for a configuration set when the reputation metrics for that configuration set (such as your bounce on complaint rate) exceed certain thresholds.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateConfigurationSetSendingEnabled service method. @param completionHandler The completion handler to call when the load request is complete. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`. @see AWSSESUpdateConfigurationSetSendingEnabledRequest */ - (void)updateConfigurationSetSendingEnabled:(AWSSESUpdateConfigurationSetSendingEnabledRequest *)request completionHandler:(void (^ _Nullable)(NSError * _Nullable error))completionHandler; /**

Modifies an association between a configuration set and a custom domain for open and click event tracking.

By default, images and links used for tracking open and click events are hosted on domains operated by Amazon SES. You can configure a subdomain of your own to handle these events. For information about using custom domains, see the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the UpdateConfigurationSetTrackingOptions service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESUpdateConfigurationSetTrackingOptionsResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorTrackingOptionsDoesNotExist`, `AWSSESErrorInvalidTrackingOptions`. @see AWSSESUpdateConfigurationSetTrackingOptionsRequest @see AWSSESUpdateConfigurationSetTrackingOptionsResponse */ - (AWSTask *)updateConfigurationSetTrackingOptions:(AWSSESUpdateConfigurationSetTrackingOptionsRequest *)request; /**

Modifies an association between a configuration set and a custom domain for open and click event tracking.

By default, images and links used for tracking open and click events are hosted on domains operated by Amazon SES. You can configure a subdomain of your own to handle these events. For information about using custom domains, see the Amazon SES Developer Guide.

@param request A container for the necessary parameters to execute the UpdateConfigurationSetTrackingOptions service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorConfigurationSetDoesNotExist`, `AWSSESErrorTrackingOptionsDoesNotExist`, `AWSSESErrorInvalidTrackingOptions`. @see AWSSESUpdateConfigurationSetTrackingOptionsRequest @see AWSSESUpdateConfigurationSetTrackingOptionsResponse */ - (void)updateConfigurationSetTrackingOptions:(AWSSESUpdateConfigurationSetTrackingOptionsRequest *)request completionHandler:(void (^ _Nullable)(AWSSESUpdateConfigurationSetTrackingOptionsResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Updates an existing custom verification email template.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateCustomVerificationEmailTemplate service method. @return An instance of `AWSTask`. On successful execution, `task.result` will be `nil`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorCustomVerificationEmailTemplateDoesNotExist`, `AWSSESErrorFromEmailAddressNotVerified`, `AWSSESErrorCustomVerificationEmailInvalidContent`. @see AWSSESUpdateCustomVerificationEmailTemplateRequest */ - (AWSTask *)updateCustomVerificationEmailTemplate:(AWSSESUpdateCustomVerificationEmailTemplateRequest *)request; /**

Updates an existing custom verification email template.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateCustomVerificationEmailTemplate service method. @param completionHandler The completion handler to call when the load request is complete. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorCustomVerificationEmailTemplateDoesNotExist`, `AWSSESErrorFromEmailAddressNotVerified`, `AWSSESErrorCustomVerificationEmailInvalidContent`. @see AWSSESUpdateCustomVerificationEmailTemplateRequest */ - (void)updateCustomVerificationEmailTemplate:(AWSSESUpdateCustomVerificationEmailTemplateRequest *)request completionHandler:(void (^ _Nullable)(NSError * _Nullable error))completionHandler; /**

Updates a receipt rule.

For information about managing receipt rules, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateReceiptRule service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESUpdateReceiptRuleResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorInvalidSnsTopic`, `AWSSESErrorInvalidS3Configuration`, `AWSSESErrorInvalidLambdaFunction`, `AWSSESErrorRuleSetDoesNotExist`, `AWSSESErrorRuleDoesNotExist`, `AWSSESErrorLimitExceeded`. @see AWSSESUpdateReceiptRuleRequest @see AWSSESUpdateReceiptRuleResponse */ - (AWSTask *)updateReceiptRule:(AWSSESUpdateReceiptRuleRequest *)request; /**

Updates a receipt rule.

For information about managing receipt rules, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateReceiptRule service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorInvalidSnsTopic`, `AWSSESErrorInvalidS3Configuration`, `AWSSESErrorInvalidLambdaFunction`, `AWSSESErrorRuleSetDoesNotExist`, `AWSSESErrorRuleDoesNotExist`, `AWSSESErrorLimitExceeded`. @see AWSSESUpdateReceiptRuleRequest @see AWSSESUpdateReceiptRuleResponse */ - (void)updateReceiptRule:(AWSSESUpdateReceiptRuleRequest *)request completionHandler:(void (^ _Nullable)(AWSSESUpdateReceiptRuleResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Updates an email template. Email templates enable you to send personalized email to one or more destinations in a single API operation. For more information, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateTemplate service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESUpdateTemplateResponse`. On failed execution, `task.error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorTemplateDoesNotExist`, `AWSSESErrorInvalidTemplate`. @see AWSSESUpdateTemplateRequest @see AWSSESUpdateTemplateResponse */ - (AWSTask *)updateTemplate:(AWSSESUpdateTemplateRequest *)request; /**

Updates an email template. Email templates enable you to send personalized email to one or more destinations in a single API operation. For more information, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the UpdateTemplate service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. On failed execution, `error` may contain an `NSError` with `AWSSESErrorDomain` domain and the following error code: `AWSSESErrorTemplateDoesNotExist`, `AWSSESErrorInvalidTemplate`. @see AWSSESUpdateTemplateRequest @see AWSSESUpdateTemplateResponse */ - (void)updateTemplate:(AWSSESUpdateTemplateRequest *)request completionHandler:(void (^ _Nullable)(AWSSESUpdateTemplateResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Returns a set of DKIM tokens for a domain identity.

When you execute the VerifyDomainDkim operation, the domain that you specify is added to the list of identities that are associated with your account. This is true even if you haven't already associated the domain with your account by using the VerifyDomainIdentity operation. However, you can't send email from the domain until you either successfully verify it or you successfully set up DKIM for it.

You use the tokens that are generated by this operation to create CNAME records. When Amazon SES detects that you've added these records to the DNS configuration for a domain, you can start sending email from that domain. You can start sending email even if you haven't added the TXT record provided by the VerifyDomainIdentity operation to the DNS configuration for your domain. All email that you send from the domain is authenticated using DKIM.

To create the CNAME records for DKIM authentication, use the following values:

  • Name: token._domainkey.example.com

  • Type: CNAME

  • Value: token.dkim.amazonses.com

In the preceding example, replace token with one of the tokens that are generated when you execute this operation. Replace example.com with your domain. Repeat this process for each token that's generated by this operation.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the VerifyDomainDkim service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESVerifyDomainDkimResponse`. @see AWSSESVerifyDomainDkimRequest @see AWSSESVerifyDomainDkimResponse */ - (AWSTask *)verifyDomainDkim:(AWSSESVerifyDomainDkimRequest *)request; /**

Returns a set of DKIM tokens for a domain identity.

When you execute the VerifyDomainDkim operation, the domain that you specify is added to the list of identities that are associated with your account. This is true even if you haven't already associated the domain with your account by using the VerifyDomainIdentity operation. However, you can't send email from the domain until you either successfully verify it or you successfully set up DKIM for it.

You use the tokens that are generated by this operation to create CNAME records. When Amazon SES detects that you've added these records to the DNS configuration for a domain, you can start sending email from that domain. You can start sending email even if you haven't added the TXT record provided by the VerifyDomainIdentity operation to the DNS configuration for your domain. All email that you send from the domain is authenticated using DKIM.

To create the CNAME records for DKIM authentication, use the following values:

  • Name: token._domainkey.example.com

  • Type: CNAME

  • Value: token.dkim.amazonses.com

In the preceding example, replace token with one of the tokens that are generated when you execute this operation. Replace example.com with your domain. Repeat this process for each token that's generated by this operation.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the VerifyDomainDkim service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESVerifyDomainDkimRequest @see AWSSESVerifyDomainDkimResponse */ - (void)verifyDomainDkim:(AWSSESVerifyDomainDkimRequest *)request completionHandler:(void (^ _Nullable)(AWSSESVerifyDomainDkimResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Adds a domain to the list of identities for your Amazon SES account in the current AWS Region and attempts to verify it. For more information about verifying domains, see Verifying Email Addresses and Domains in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the VerifyDomainIdentity service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESVerifyDomainIdentityResponse`. @see AWSSESVerifyDomainIdentityRequest @see AWSSESVerifyDomainIdentityResponse */ - (AWSTask *)verifyDomainIdentity:(AWSSESVerifyDomainIdentityRequest *)request; /**

Adds a domain to the list of identities for your Amazon SES account in the current AWS Region and attempts to verify it. For more information about verifying domains, see Verifying Email Addresses and Domains in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the VerifyDomainIdentity service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESVerifyDomainIdentityRequest @see AWSSESVerifyDomainIdentityResponse */ - (void)verifyDomainIdentity:(AWSSESVerifyDomainIdentityRequest *)request completionHandler:(void (^ _Nullable)(AWSSESVerifyDomainIdentityResponse * _Nullable response, NSError * _Nullable error))completionHandler; /**

Deprecated. Use the VerifyEmailIdentity operation to verify a new email address.

@param request A container for the necessary parameters to execute the VerifyEmailAddress service method. @return An instance of `AWSTask`. On successful execution, `task.result` will be `nil`. @see AWSSESVerifyEmailAddressRequest */ - (AWSTask *)verifyEmailAddress:(AWSSESVerifyEmailAddressRequest *)request; /**

Deprecated. Use the VerifyEmailIdentity operation to verify a new email address.

@param request A container for the necessary parameters to execute the VerifyEmailAddress service method. @param completionHandler The completion handler to call when the load request is complete. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESVerifyEmailAddressRequest */ - (void)verifyEmailAddress:(AWSSESVerifyEmailAddressRequest *)request completionHandler:(void (^ _Nullable)(NSError * _Nullable error))completionHandler; /**

Adds an email address to the list of identities for your Amazon SES account in the current AWS region and attempts to verify it. As a result of executing this operation, a verification email is sent to the specified address.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the VerifyEmailIdentity service method. @return An instance of `AWSTask`. On successful execution, `task.result` will contain an instance of `AWSSESVerifyEmailIdentityResponse`. @see AWSSESVerifyEmailIdentityRequest @see AWSSESVerifyEmailIdentityResponse */ - (AWSTask *)verifyEmailIdentity:(AWSSESVerifyEmailIdentityRequest *)request; /**

Adds an email address to the list of identities for your Amazon SES account in the current AWS region and attempts to verify it. As a result of executing this operation, a verification email is sent to the specified address.

You can execute this operation no more than once per second.

@param request A container for the necessary parameters to execute the VerifyEmailIdentity service method. @param completionHandler The completion handler to call when the load request is complete. `response` - A response object, or `nil` if the request failed. `error` - An error object that indicates why the request failed, or `nil` if the request was successful. @see AWSSESVerifyEmailIdentityRequest @see AWSSESVerifyEmailIdentityResponse */ - (void)verifyEmailIdentity:(AWSSESVerifyEmailIdentityRequest *)request completionHandler:(void (^ _Nullable)(AWSSESVerifyEmailIdentityResponse * _Nullable response, NSError * _Nullable error))completionHandler; @end NS_ASSUME_NONNULL_END