aws-cdk-lib.aws_ses.CfnConfigurationSet.DeliveryOptionsProperty

interface DeliveryOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.SES.CfnConfigurationSet.DeliveryOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnConfigurationSet_DeliveryOptionsProperty
Javasoftware.amazon.awscdk.services.ses.CfnConfigurationSet.DeliveryOptionsProperty
Pythonaws_cdk.aws_ses.CfnConfigurationSet.DeliveryOptionsProperty
TypeScript aws-cdk-lib » aws_ses » CfnConfigurationSet » DeliveryOptionsProperty

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

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from 'aws-cdk-lib';
const deliveryOptionsProperty: ses.CfnConfigurationSet.DeliveryOptionsProperty = {
  sendingPoolName: 'sendingPoolName',
  tlsPolicy: 'tlsPolicy',
};

Properties

NameTypeDescription
sendingPoolName?stringThe name of the dedicated IP pool to associate with the configuration set.
tlsPolicy?stringSpecifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).

sendingPoolName?

Type: string (optional)

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


tlsPolicy?

Type: string (optional)

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

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