Class WorkmailActionConfig
WorkmailAction configuration.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class WorkmailActionConfig : IWorkmailActionConfig
Syntax (vb)
Public Class WorkmailActionConfig Implements IWorkmailActionConfig
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 workmailActionConfig = new WorkmailActionConfig {
OrganizationArn = "organizationArn",
// the properties below are optional
TopicArn = "topicArn"
};
Synopsis
Constructors
WorkmailActionConfig() | WorkmailAction configuration. |
Properties
OrganizationArn | The Amazon Resource Name (ARN) of the Amazon WorkMail organization. |
TopicArn | The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the WorkMail action is called. |
Constructors
WorkmailActionConfig()
WorkmailAction configuration.
public WorkmailActionConfig()
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 workmailActionConfig = new WorkmailActionConfig {
OrganizationArn = "organizationArn",
// the properties below are optional
TopicArn = "topicArn"
};
Properties
OrganizationArn
The Amazon Resource Name (ARN) of the Amazon WorkMail organization.
public string OrganizationArn { get; set; }
Property Value
Remarks
TopicArn
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the WorkMail action is called.
public string? TopicArn { get; set; }
Property Value
Remarks
Default: - No notification is sent to SNS.