Class ReceiptRule

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.ses.ReceiptRule
All Implemented Interfaces:
IResource, IReceiptRule, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:24.986Z") @Stability(Stable) public class ReceiptRule extends Resource implements IReceiptRule
A new receipt rule.

Example:

 ReceiptRuleSet ruleSet = new ReceiptRuleSet(this, "RuleSet");
 ReceiptRule awsRule = ruleSet.addRule("Aws", ReceiptRuleOptions.builder()
         .recipients(List.of("aws.com"))
         .build());
 
  • Constructor Details

    • ReceiptRule

      protected ReceiptRule(software.amazon.jsii.JsiiObjectRef objRef)
    • ReceiptRule

      protected ReceiptRule(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • ReceiptRule

      @Stability(Stable) public ReceiptRule(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull ReceiptRuleProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
  • Method Details

    • fromReceiptRuleName

      @Stability(Stable) @NotNull public static IReceiptRule fromReceiptRuleName(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String receiptRuleName)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      receiptRuleName - This parameter is required.
    • addAction

      @Stability(Stable) public void addAction(@NotNull IReceiptRuleAction action)
      Adds an action to this receipt rule.

      Parameters:
      action - This parameter is required.
    • getReceiptRuleName

      @Stability(Stable) @NotNull public String getReceiptRuleName()
      The name of the receipt rule.
      Specified by:
      getReceiptRuleName in interface IReceiptRule