Interface CfnMailManagerRuleSet.ArchiveActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMailManagerRuleSet.ArchiveActionProperty.Jsii$Proxy
- Enclosing class:
CfnMailManagerRuleSet
@Stability(Stable)
public static interface CfnMailManagerRuleSet.ArchiveActionProperty
extends software.amazon.jsii.JsiiSerializable
The action to archive the email by delivering the email to an Amazon SES archive.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ses.*;
ArchiveActionProperty archiveActionProperty = ArchiveActionProperty.builder()
.targetArchive("targetArchive")
// the properties below are optional
.actionFailurePolicy("actionFailurePolicy")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMailManagerRuleSet.ArchiveActionPropertystatic final classAn implementation forCfnMailManagerRuleSet.ArchiveActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTargetArchive
The identifier of the archive to send the email to.- See Also:
-
getActionFailurePolicy
A policy that states what to do in the case of failure.The action will fail if there are configuration errors. For example, the specified archive has been deleted.
- See Also:
-
builder
-