Interface CfnMailManagerRuleSet.IArchiveActionProperty
The action to archive the email by delivering the email to an Amazon SES archive.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnMailManagerRuleSet.IArchiveActionProperty
Syntax (vb)
Public Interface CfnMailManagerRuleSet.IArchiveActionProperty
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 archiveActionProperty = new ArchiveActionProperty {
TargetArchive = "targetArchive",
// the properties below are optional
ActionFailurePolicy = "actionFailurePolicy"
};
Synopsis
Properties
ActionFailurePolicy | A policy that states what to do in the case of failure. |
TargetArchive | The identifier of the archive to send the email to. |
Properties
ActionFailurePolicy
A policy that states what to do in the case of failure.
string? ActionFailurePolicy { get; }
Property Value
Remarks
The action will fail if there are configuration errors. For example, the specified archive has been deleted.
TargetArchive
The identifier of the archive to send the email to.
string TargetArchive { get; }