Class: Aws::SESV2::Types::SendingOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::SendingOptions
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
Used to enable or disable email sending for messages that use this configuration set in the current Amazon Web Services Region.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#sending_enabled ⇒ Boolean
If
true
, email sending is enabled for the configuration set.
Instance Attribute Details
#sending_enabled ⇒ Boolean
If true
, email sending is enabled for the configuration set. If
false
, email sending is disabled for the configuration set.
6625 6626 6627 6628 6629 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 6625 class SendingOptions < Struct.new( :sending_enabled) SENSITIVE = [] include Aws::Structure end |