@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.186Z") @Stability(value=Stable) public interface CfnEmailIdentityProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnEmailIdentityProps cfnEmailIdentityProps = CfnEmailIdentityProps.builder()
.emailIdentity("emailIdentity")
// the properties below are optional
.configurationSetAttributes(ConfigurationSetAttributesProperty.builder()
.configurationSetName("configurationSetName")
.build())
.dkimAttributes(DkimAttributesProperty.builder()
.signingEnabled(false)
.build())
.dkimSigningAttributes(DkimSigningAttributesProperty.builder()
.domainSigningPrivateKey("domainSigningPrivateKey")
.domainSigningSelector("domainSigningSelector")
.nextSigningKeyLength("nextSigningKeyLength")
.build())
.feedbackAttributes(FeedbackAttributesProperty.builder()
.emailForwardingEnabled(false)
.build())
.mailFromAttributes(MailFromAttributesProperty.builder()
.behaviorOnMxFailure("behaviorOnMxFailure")
.mailFromDomain("mailFromDomain")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEmailIdentityProps.Builder
A builder for
CfnEmailIdentityProps |
static class |
CfnEmailIdentityProps.Jsii$Proxy
An implementation for
CfnEmailIdentityProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnEmailIdentityProps.Builder |
builder() |
default Object |
getConfigurationSetAttributes()
`AWS::SES::EmailIdentity.ConfigurationSetAttributes`.
|
default Object |
getDkimAttributes()
`AWS::SES::EmailIdentity.DkimAttributes`.
|
default Object |
getDkimSigningAttributes()
`AWS::SES::EmailIdentity.DkimSigningAttributes`.
|
String |
getEmailIdentity()
`AWS::SES::EmailIdentity.EmailIdentity`.
|
default Object |
getFeedbackAttributes()
`AWS::SES::EmailIdentity.FeedbackAttributes`.
|
default Object |
getMailFromAttributes()
`AWS::SES::EmailIdentity.MailFromAttributes`.
|
@Stability(value=Stable) @NotNull String getEmailIdentity()
@Stability(value=Stable) @Nullable default Object getConfigurationSetAttributes()
@Stability(value=Stable) @Nullable default Object getDkimAttributes()
@Stability(value=Stable) @Nullable default Object getDkimSigningAttributes()
@Stability(value=Stable) @Nullable default Object getFeedbackAttributes()
@Stability(value=Stable) @Nullable default Object getMailFromAttributes()
@Stability(value=Stable) static CfnEmailIdentityProps.Builder builder()
CfnEmailIdentityProps.Builder of CfnEmailIdentityPropsCopyright © 2022. All rights reserved.