Interface CfnMailManagerArchiveMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMailManagerArchiveMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.528Z")
@Stability(Stable)
public interface CfnMailManagerArchiveMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnMailManagerArchivePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ses.*;
CfnMailManagerArchiveMixinProps cfnMailManagerArchiveMixinProps = CfnMailManagerArchiveMixinProps.builder()
.archiveName("archiveName")
.kmsKeyArn("kmsKeyArn")
.retention(ArchiveRetentionProperty.builder()
.retentionPeriod("retentionPeriod")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMailManagerArchiveMixinPropsstatic final classAn implementation forCfnMailManagerArchiveMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA unique name for the new archive.default StringThe Amazon Resource Name (ARN) of the KMS key for encrypting emails in the archive.default ObjectThe period for retaining emails in the archive before automatic deletion.getTags()The tags used to organize, track, or control access for the resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArchiveName
A unique name for the new archive.- See Also:
-
getKmsKeyArn
The Amazon Resource Name (ARN) of the KMS key for encrypting emails in the archive.- See Also:
-
getRetention
The period for retaining emails in the archive before automatic deletion.Returns union: either
IResolvableorCfnMailManagerArchivePropsMixin.ArchiveRetentionProperty- See Also:
-
getTags
The tags used to organize, track, or control access for the resource.For example, { "tags": {"key1":"value1", "key2":"value2"} }.
- See Also:
-
builder
-