Class CfnEmailIdentityProps
Properties for defining a CfnEmailIdentity
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.AWS.SES.dll
Syntax (csharp)
public class CfnEmailIdentityProps : Object, ICfnEmailIdentityProps
Syntax (vb)
Public Class CfnEmailIdentityProps
Inherits Object
Implements ICfnEmailIdentityProps
Remarks
Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-emailidentity.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SES;
var cfnEmailIdentityProps = new CfnEmailIdentityProps {
EmailIdentity = "emailIdentity",
// the properties below are optional
ConfigurationSetAttributes = new ConfigurationSetAttributesProperty {
ConfigurationSetName = "configurationSetName"
},
DkimAttributes = new DkimAttributesProperty {
SigningEnabled = false
},
DkimSigningAttributes = new DkimSigningAttributesProperty {
DomainSigningPrivateKey = "domainSigningPrivateKey",
DomainSigningSelector = "domainSigningSelector",
NextSigningKeyLength = "nextSigningKeyLength"
},
FeedbackAttributes = new FeedbackAttributesProperty {
EmailForwardingEnabled = false
},
MailFromAttributes = new MailFromAttributesProperty {
BehaviorOnMxFailure = "behaviorOnMxFailure",
MailFromDomain = "mailFromDomain"
}
};
Synopsis
Constructors
CfnEmailIdentityProps() |
Properties
ConfigurationSetAttributes | Used to associate a configuration set with an email identity. |
DkimAttributes | An object that contains information about the DKIM attributes for the identity. |
DkimSigningAttributes | If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM . |
EmailIdentity | The email address or domain to verify. |
FeedbackAttributes | Used to enable or disable feedback forwarding for an identity. |
MailFromAttributes | Used to enable or disable the custom Mail-From domain configuration for an email identity. |
Constructors
CfnEmailIdentityProps()
public CfnEmailIdentityProps()
Properties
ConfigurationSetAttributes
Used to associate a configuration set with an email identity.
public object ConfigurationSetAttributes { get; set; }
Property Value
System.Object
Remarks
DkimAttributes
An object that contains information about the DKIM attributes for the identity.
public object DkimAttributes { get; set; }
Property Value
System.Object
Remarks
DkimSigningAttributes
If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM .
public object DkimSigningAttributes { get; set; }
Property Value
System.Object
Remarks
EmailIdentity
The email address or domain to verify.
public string EmailIdentity { get; set; }
Property Value
System.String
Remarks
FeedbackAttributes
Used to enable or disable feedback forwarding for an identity.
public object FeedbackAttributes { get; set; }
Property Value
System.Object
Remarks
MailFromAttributes
Used to enable or disable the custom Mail-From domain configuration for an email identity.
public object MailFromAttributes { get; set; }
Property Value
System.Object