Show / Hide Table of Contents

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).

Inheritance
object
CfnConfigurationSet.DeliveryOptionsProperty
Implements
CfnConfigurationSet.IDeliveryOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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"
             };

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

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).

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.

public string? SendingPoolName { get; set; }
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).

public string? TlsPolicy { get; set; }
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

Implements

CfnConfigurationSet.IDeliveryOptionsProperty
Back to top Generated by DocFX