Interface CfnConfigurationSet.IDeliveryOptionsProperty
Specifies the name of the dedicated IP pool to associate with the configuration set and whether messages that use the configuration set are required to use Transport Layer Security (TLS).
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDeliveryOptionsProperty
Syntax (vb)
Public Interface IDeliveryOptionsProperty
Remarks
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 deliveryOptionsProperty = new DeliveryOptionsProperty {
MaxDeliverySeconds = 123,
SendingPoolName = "sendingPoolName",
TlsPolicy = "tlsPolicy"
};
Synopsis
Properties
MaxDeliverySeconds | The maximum amount of time, in seconds, that Amazon SES API v2 will attempt delivery of email. |
SendingPoolName | The name of the dedicated IP pool to associate with the configuration set. |
TlsPolicy | Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS). |
Properties
MaxDeliverySeconds
The maximum amount of time, in seconds, that Amazon SES API v2 will attempt delivery of email.
virtual Nullable<double> MaxDeliverySeconds { get; }
Property Value
System.Nullable<System.Double>
Remarks
If specified, the value must greater than or equal to 300 seconds (5 minutes) and less than or equal to 50400 seconds (840 minutes).
SendingPoolName
The name of the dedicated IP pool to associate with the configuration set.
virtual string SendingPoolName { get; }
Property Value
System.String
Remarks
TlsPolicy
Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).
virtual string TlsPolicy { get; }
Property Value
System.String
Remarks
If the value is REQUIRE
, messages are only delivered if a TLS connection can be established. If the value is OPTIONAL
, messages can be delivered in plain text if a TLS connection can't be established.
Valid Values: REQUIRE | OPTIONAL