interface DeliveryOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnConfigurationSet.DeliveryOptionsProperty |
Java | software.amazon.awscdk.services.ses.CfnConfigurationSet.DeliveryOptionsProperty |
Python | aws_cdk.aws_ses.CfnConfigurationSet.DeliveryOptionsProperty |
TypeScript | @aws-cdk/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 * as ses from '@aws-cdk/aws-ses';
const deliveryOptionsProperty: ses.CfnConfigurationSet.DeliveryOptionsProperty = {
sendingPoolName: 'sendingPoolName',
tlsPolicy: 'tlsPolicy',
};
Properties
| Name | Type | Description |
|---|---|---|
| sending | string | The name of the dedicated IP pool to associate with the configuration set. |
| tls | string | Specifies 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

.NET
Java
Python
TypeScript