Class: Aws::SES::Types::SetIdentityDkimEnabledRequest

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

Overview

Represents a request to enable or disable Amazon SES Easy DKIM signing for an identity. For more information about setting up Easy DKIM, see the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/dg/send-email-authentication-dkim-easy.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dkim_enabledBoolean

Sets whether DKIM signing is enabled for an identity. Set to ‘true` to enable DKIM signing for this identity; `false` to disable it.

Returns:

  • (Boolean)


4569
4570
4571
4572
4573
4574
# File 'lib/aws-sdk-ses/types.rb', line 4569

class SetIdentityDkimEnabledRequest < Struct.new(
  :identity,
  :dkim_enabled)
  SENSITIVE = []
  include Aws::Structure
end

#identityString

The identity for which DKIM signing should be enabled or disabled.

Returns:

  • (String)


4569
4570
4571
4572
4573
4574
# File 'lib/aws-sdk-ses/types.rb', line 4569

class SetIdentityDkimEnabledRequest < Struct.new(
  :identity,
  :dkim_enabled)
  SENSITIVE = []
  include Aws::Structure
end