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 is placed. If this parameter is null, the new rule is 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 where the receipt rule is added.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable ruleSetName;
Swift
var ruleSetName: String? { get set }