Show / Hide Table of Contents

Enum ConfigurationSetTlsPolicy

TLS policy for a configuration set.

Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum ConfigurationSetTlsPolicy
Syntax (vb)
Public Enum ConfigurationSetTlsPolicy
Remarks

ExampleMetadata: infused

Examples
using Amazon.CDK;

            IDedicatedIpPool myPool;

            new ConfigurationSet(this, "ConfigurationSet", new ConfigurationSetProps {
                TlsPolicy = ConfigurationSetTlsPolicy.REQUIRE,
                DedicatedIpPool = myPool,
                // Specify maximum delivery time
                // This configuration can be useful in such cases as time-sensitive emails (like those containing a one-time-password),
                // transactional emails, and email that you want to ensure isn't delivered during non-business hours.
                MaxDeliveryDuration = Duration.Minutes(10)
            });

Synopsis

Fields

OPTIONAL

Messages can be delivered in plain text if a TLS connection can't be established.

REQUIRE

Messages are only delivered if a TLS connection can be established.

Fields

Name Description
OPTIONAL

Messages can be delivered in plain text if a TLS connection can't be established.

REQUIRE

Messages are only delivered if a TLS connection can be established.

Back to top Generated by DocFX