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