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
Note:
When making an API call, you may pass DeliveryOptions data as a hash:
{
tls_policy: "Require", # accepts Require, Optional
}
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.
1546 1547 1548 1549 1550 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 1546 class DeliveryOptions < Struct.new( :tls_policy) SENSITIVE = [] include Aws::Structure end |