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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sesv2/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)


5480
5481
5482
5483
5484
5485
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5480

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)


5480
5481
5482
5483
5484
5485
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5480

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