interface ArchivingOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnConfigurationSet.ArchivingOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnConfigurationSet_ArchivingOptionsProperty |
Java | software.amazon.awscdk.services.ses.CfnConfigurationSet.ArchivingOptionsProperty |
Python | aws_cdk.aws_ses.CfnConfigurationSet.ArchivingOptionsProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnConfigurationSet » 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 { aws_ses as ses } from 'aws-cdk-lib';
const archivingOptionsProperty: ses.CfnConfigurationSet.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