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.
virtual string Encoding { get; }
Property Value
System.String
Remarks
TopicArn
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify.
virtual string TopicArn { get; }
Property Value
System.String
Remarks
Default: - No notification is sent to SNS.