aws-cdk-lib.aws_ses.SNSActionConfig

interface SNSActionConfig

LanguageType name
.NETAmazon.CDK.AWS.SES.SNSActionConfig
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#SNSActionConfig
Javasoftware.amazon.awscdk.services.ses.SNSActionConfig
Pythonaws_cdk.aws_ses.SNSActionConfig
TypeScript (source)aws-cdk-lib » aws_ses » SNSActionConfig

SNSAction configuration.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from 'aws-cdk-lib';
const sNSActionConfig: ses.SNSActionConfig = {
  encoding: 'encoding',
  topicArn: 'topicArn',
};

Properties

NameTypeDescription
encoding?stringThe encoding to use for the email within the Amazon SNS notification.
topicArn?stringThe Amazon Resource Name (ARN) of the Amazon SNS topic to notify.

encoding?

Type: string (optional, default: 'UTF-8')

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


topicArn?

Type: string (optional, default: No notification is sent to SNS.)

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