Interface CfnEmailIdentity.DkimAttributesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEmailIdentity.DkimAttributesProperty.Jsii$Proxy
- Enclosing class:
CfnEmailIdentity
@Stability(Stable)
public static interface CfnEmailIdentity.DkimAttributesProperty
extends software.amazon.jsii.JsiiSerializable
Used to enable or disable DKIM authentication for an email identity.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ses.*;
DkimAttributesProperty dkimAttributesProperty = DkimAttributesProperty.builder()
.signingEnabled(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEmailIdentity.DkimAttributesPropertystatic final classAn implementation forCfnEmailIdentity.DkimAttributesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSigningEnabled
Sets the DKIM signing configuration for the identity.When you set this value
true, then the messages that are sent from the identity are signed using DKIM. If you set this value tofalse, your messages are sent without DKIM signing.Returns union: either
BooleanorIResolvable- See Also:
-
builder
-