Class: Aws::SES::Types::DeliveryOptions

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#tls_policyString

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.

Returns:

  • (String)


1204
1205
1206
1207
1208
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 1204

class DeliveryOptions < Struct.new(
  :tls_policy)
  SENSITIVE = []
  include Aws::Structure
end