Class SNSActionConfig
SNSAction configuration.
Inheritance
System.Object
SNSActionConfig
Implements
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class SNSActionConfig : Object, ISNSActionConfig
Syntax (vb)
Public Class SNSActionConfig
Inherits Object
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() |
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()
public SNSActionConfig()
Properties
Encoding
The encoding to use for the email within the Amazon SNS notification.
public string Encoding { get; set; }
Property Value
System.String
Remarks
TopicArn
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify.
public string TopicArn { get; set; }
Property Value
System.String
Remarks
Default: - No notification is sent to SNS.