Show / Hide Table of Contents

Class SNSActionConfig

SNSAction configuration.

Inheritance
object
SNSActionConfig
Implements
ISNSActionConfig
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 SNSActionConfig : ISNSActionConfig
Syntax (vb)
Public Class SNSActionConfig Implements ISNSActionConfig
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 sNSActionConfig = new SNSActionConfig {
                Encoding = "encoding",
                TopicArn = "topicArn"
            };

Synopsis

Constructors

SNSActionConfig()

SNSAction configuration.

Properties

Encoding

The encoding to use for the email within the Amazon SNS notification.

TopicArn

The Amazon Resource Name (ARN) of the Amazon SNS topic to notify.

Constructors

SNSActionConfig()

SNSAction configuration.

public SNSActionConfig()
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 sNSActionConfig = new SNSActionConfig {
                Encoding = "encoding",
                TopicArn = "topicArn"
            };

Properties

Encoding

The encoding to use for the email within the Amazon SNS notification.

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

string

Remarks

Default: 'UTF-8'

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

TopicArn

The Amazon Resource Name (ARN) of the Amazon SNS topic to notify.

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-snsaction.html#cfn-ses-receiptrule-snsaction-topicarn

Implements

ISNSActionConfig
Back to top Generated by DocFX