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 CfnConfigurationSet.IDeliveryOptionsProperty
Syntax (vb)
Public Interface CfnConfigurationSet.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 name of the configuration set used when sent through a configuration set with archiving enabled. |
| 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 name of the configuration set used when sent through a configuration set with archiving enabled.
double? MaxDeliverySeconds { get; }
Property Value
Remarks
SendingPoolName
The name of the dedicated IP pool to associate with the configuration set.
string? SendingPoolName { get; }
Property Value
Remarks
TlsPolicy
Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).
string? TlsPolicy { get; }
Property Value
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