AWSSESCreateReceiptRuleRequest
Objective-C
@interface AWSSESCreateReceiptRuleRequest
Swift
class AWSSESCreateReceiptRuleRequest
Represents a request to create a receipt rule. You use receipt rules to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide.
Required parameters: [RuleSetName, Rule]
-
The name of an existing rule after which the new rule will be placed. If this parameter is null, the new rule will be inserted at the beginning of the rule list.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable after;
Swift
var after: String? { get set }
-
A data structure that contains the specified rule’s name, actions, recipients, domains, enabled status, scan status, and TLS policy.
Declaration
Objective-C
@property (nonatomic, strong) AWSSESReceiptRule *_Nullable rule;
Swift
var rule: AWSSESReceiptRule? { get set }
-
The name of the rule set that the receipt rule will be added to.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable ruleSetName;
Swift
var ruleSetName: String? { get set }