Class: Aws::SESV2::Types::PutConfigurationSetSendingOptionsRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sesv2/types.rb

Overview

A request to enable or disable the ability of Amazon SES to send emails that use a specific configuration set.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#configuration_set_nameString

The name of the configuration set to enable or disable email sending for.

Returns:

  • (String)


5504
5505
5506
5507
5508
5509
# File 'lib/aws-sdk-sesv2/types.rb', line 5504

class PutConfigurationSetSendingOptionsRequest < Struct.new(
  :configuration_set_name,
  :sending_enabled)
  SENSITIVE = []
  include Aws::Structure
end

#sending_enabledBoolean

If ‘true`, email sending is enabled for the configuration set. If `false`, email sending is disabled for the configuration set.

Returns:

  • (Boolean)


5504
5505
5506
5507
5508
5509
# File 'lib/aws-sdk-sesv2/types.rb', line 5504

class PutConfigurationSetSendingOptionsRequest < Struct.new(
  :configuration_set_name,
  :sending_enabled)
  SENSITIVE = []
  include Aws::Structure
end