Class: Aws::SES::Types::DeliveryOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::DeliveryOptions
- Defined in:
- gems/aws-sdk-ses/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.
1243 1244 1245 1246 1247 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 1243 class DeliveryOptions < Struct.new( :tls_policy) SENSITIVE = [] include Aws::Structure end |