Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-deliveryoptions.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 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

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-deliveryoptions.html#cfn-ses-configurationset-deliveryoptions-maxdeliveryseconds

SendingPoolName

The name of the dedicated IP pool to associate with the configuration set.

string? SendingPoolName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-deliveryoptions.html#cfn-ses-configurationset-deliveryoptions-sendingpoolname

TlsPolicy

Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).

string? TlsPolicy { get; }
Property Value

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-deliveryoptions.html#cfn-ses-configurationset-deliveryoptions-tlspolicy

Back to top Generated by DocFX