Class Stop
Terminates the evaluation of the receipt rule set and optionally publishes a notification to Amazon SNS.
Implements
Namespace: Amazon.CDK.AWS.SES.Actions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class Stop : DeputyBase, IReceiptRuleAction
Syntax (vb)
Public Class [Stop] Inherits DeputyBase Implements IReceiptRuleAction
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SES.Actions;
using Amazon.CDK.AWS.SNS;
Topic topic;
var stop = new Stop(new StopProps {
Topic = topic
});
Synopsis
Constructors
| Stop(IStopProps?) | Terminates the evaluation of the receipt rule set and optionally publishes a notification to Amazon SNS. |
Methods
| Bind(IReceiptRuleRef) | Returns the receipt rule action specification. |
Constructors
Stop(IStopProps?)
Terminates the evaluation of the receipt rule set and optionally publishes a notification to Amazon SNS.
public Stop(IStopProps? props = null)
Parameters
- props IStopProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SES.Actions;
using Amazon.CDK.AWS.SNS;
Topic topic;
var stop = new Stop(new StopProps {
Topic = topic
});
Methods
Bind(IReceiptRuleRef)
Returns the receipt rule action specification.
public virtual IReceiptRuleActionConfig Bind(IReceiptRuleRef rule)
Parameters
- rule IReceiptRuleRef
Returns
Remarks
ExampleMetadata: fixture=_generated