Class SNSActionConfig
SNSAction configuration.
Implements
Inherited Members
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
Remarks
TopicArn
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify.
public string? TopicArn { get; set; }
Property Value
Remarks
Default: - No notification is sent to SNS.