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

.NET
Go
Java
Python
TypeScript