interface ArchiveActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnMailManagerRuleSet.ArchiveActionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerRuleSet_ArchiveActionProperty |
Java | software.amazon.awscdk.services.ses.CfnMailManagerRuleSet.ArchiveActionProperty |
Python | aws_cdk.aws_ses.CfnMailManagerRuleSet.ArchiveActionProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnMailManagerRuleSet » ArchiveActionProperty |
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 { aws_ses as ses } from 'aws-cdk-lib';
const archiveActionProperty: ses.CfnMailManagerRuleSet.ArchiveActionProperty = {
targetArchive: 'targetArchive',
// the properties below are optional
actionFailurePolicy: 'actionFailurePolicy',
};
Properties
| Name | Type | Description |
|---|---|---|
| target | string | The identifier of the archive to send the email to. |
| action | string | A policy that states what to do in the case of failure. |
targetArchive
Type:
string
The identifier of the archive to send the email to.
actionFailurePolicy?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript