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

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

Overview

Note:

When making an API call, you may pass SetIdentityDkimEnabledRequest data as a hash:

{
  identity: "Identity", # required
  dkim_enabled: false, # required
}

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/DeveloperGuide/easy-dkim.html

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)


4806
4807
4808
4809
4810
# File 'lib/aws-sdk-ses/types.rb', line 4806

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

#identityString

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

Returns:

  • (String)


4806
4807
4808
4809
4810
# File 'lib/aws-sdk-ses/types.rb', line 4806

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