File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
aws_lambda_powertools/utilities/data_classes Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -320,13 +320,12 @@ def receipt(self) -> SESReceipt:
320
320
321
321
322
322
class Disposition (Enum ):
323
- """No further actions in the current receipt rule will be processed, but further receipt rules can be processed."""
324
-
325
323
STOP_RULE = "STOP_RULE"
326
- """No further actions or receipt rules will be processed."""
324
+ """No further actions in the current receipt rule will be processed, but further receipt rules can be processed."""
327
325
STOP_RULE_SET = "STOP_RULE_SET"
328
- """This means that further actions and receipt rules can be processed."""
326
+ """No further actions or receipt rules will be processed."""
329
327
CONTINUE = "CONTINUE"
328
+ """This means that further actions and receipt rules can be processed."""
330
329
331
330
332
331
def disposition_response (disposition : Disposition ) -> Dict [str , str ]:
You can’t perform that action at this time.
0 commit comments