AWSSESSetReceiptRulePositionRequest

Objective-C

@interface AWSSESSetReceiptRulePositionRequest

Swift

class AWSSESSetReceiptRulePositionRequest

Represents a request to set the position of a receipt rule in a receipt rule set. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide.

Required parameters: [RuleSetName, RuleName]

  • The name of the receipt rule after which to place the specified receipt rule.

    Declaration

    Objective-C

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

    Swift

    var after: String? { get set }
  • The name of the receipt rule to reposition.

    Declaration

    Objective-C

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

    Swift

    var ruleName: String? { get set }
  • The name of the receipt rule set that contains the receipt rule to reposition.

    Declaration

    Objective-C

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

    Swift

    var ruleSetName: String? { get set }