interface ArchivingOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnConfigurationSetPropsMixin.ArchivingOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnConfigurationSetPropsMixin_ArchivingOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnConfigurationSetPropsMixin.ArchivingOptionsProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnConfigurationSetPropsMixin.ArchivingOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnConfigurationSetPropsMixin » ArchivingOptionsProperty |
An object that defines a MailManager archive that is used to preserve emails that you send using the configuration set.
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 archivingOptionsProperty: ses_mixins.CfnConfigurationSetPropsMixin.ArchivingOptionsProperty = {
archiveArn: 'archiveArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| archive | string | The ARN of the MailManager archive to associate with the configuration set. |
archiveArn?
Type:
string
(optional)
The ARN of the MailManager archive to associate with the configuration set.

.NET
Go
Java
Python
TypeScript