Show / Hide Table of Contents

Interface ISNSActionConfig

SNSAction configuration.

Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ISNSActionConfig
Syntax (vb)
Public Interface 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

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.

Properties

Encoding

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

string? Encoding { get; }
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.

string? TopicArn { get; }
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

Back to top Generated by DocFX