interface ArchiveActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnMailManagerRuleSetPropsMixin.ArchiveActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnMailManagerRuleSetPropsMixin_ArchiveActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnMailManagerRuleSetPropsMixin.ArchiveActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnMailManagerRuleSetPropsMixin.ArchiveActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » 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 { aws_ses as ses } from '@aws-cdk/cfn-property-mixins';
const archiveActionProperty: ses.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