Class: Aws::SES::Types::DeliveryOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::DeliveryOptions
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tls_policy ⇒ String
Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).
Instance Attribute Details
#tls_policy ⇒ String
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.
1204 1205 1206 1207 1208 |
# File 'lib/aws-sdk-ses/types.rb', line 1204 class DeliveryOptions < Struct.new( :tls_policy) SENSITIVE = [] include Aws::Structure end |