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

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

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)


4545
4546
4547
4548
4549
4550
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 4545

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)


4545
4546
4547
4548
4549
4550
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 4545

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