Show / Hide Table of Contents

Class WorkmailActionConfig

WorkmailAction configuration.

Inheritance
object
WorkmailActionConfig
Implements
IWorkmailActionConfig
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-workmailaction.html#cfn-ses-receiptrule-workmailaction-organizationarn

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

string

Remarks

Default: - No notification is sent to SNS.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-workmailaction.html#cfn-ses-receiptrule-workmailaction-topicarn

Implements

IWorkmailActionConfig
Back to top Generated by DocFX