Class CfnConfigurationSet.DeliveryOptionsProperty
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).
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfigurationSet.DeliveryOptionsProperty : CfnConfigurationSet.IDeliveryOptionsProperty
Syntax (vb)
Public Class CfnConfigurationSet.DeliveryOptionsProperty Implements 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
Constructors
DeliveryOptionsProperty() | 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). |
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). |
Constructors
DeliveryOptionsProperty()
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).
public DeliveryOptionsProperty()
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"
};
Properties
MaxDeliverySeconds
The maximum amount of time, in seconds, that Amazon SES API v2 will attempt delivery of email.
public double? MaxDeliverySeconds { get; set; }
Property Value
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.
public string? SendingPoolName { get; set; }
Property Value
Remarks
TlsPolicy
Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).
public string? TlsPolicy { get; set; }
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