Show / Hide Table of Contents

Class StopActionConfig

StopAction configuration.

Inheritance
object
StopActionConfig
Implements
IStopActionConfig
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class StopActionConfig : IStopActionConfig
Syntax (vb)
Public Class StopActionConfig Implements IStopActionConfig
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;

            var stopActionConfig = new StopActionConfig {
                Scope = "scope",

                // the properties below are optional
                TopicArn = "topicArn"
            };

Synopsis

Constructors

StopActionConfig()

StopAction configuration.

Properties

Scope

The scope of the StopAction.

TopicArn

The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the stop action is taken.

Constructors

StopActionConfig()

StopAction configuration.

public StopActionConfig()
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;

            var stopActionConfig = new StopActionConfig {
                Scope = "scope",

                // the properties below are optional
                TopicArn = "topicArn"
            };

Properties

Scope

The scope of the StopAction.

public string Scope { get; set; }
Property Value

string

Remarks

The only acceptable value is RuleSet.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-stopaction.html#cfn-ses-receiptrule-stopaction-scope

TopicArn

The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the stop action is taken.

public string? TopicArn { get; set; }
Property Value

string

Remarks

Default: - No notification is sent to SNS.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-stopaction.html#cfn-ses-receiptrule-stopaction-topicarn

Implements

IStopActionConfig
Back to top Generated by DocFX