aws-cdk-lib.aws_ses.CfnConfigurationSet.DeliveryOptionsProperty
interface DeliveryOptionsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.SES.CfnConfigurationSet.DeliveryOptionsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnConfigurationSet_DeliveryOptionsProperty |
![]() | software.amazon.awscdk.services.ses.CfnConfigurationSet.DeliveryOptionsProperty |
![]() | aws_cdk.aws_ses.CfnConfigurationSet.DeliveryOptionsProperty |
![]() | 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
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