Class: Aws::SESV2::Types::PutEmailIdentityDkimAttributesRequest

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

Overview

A request to enable or disable DKIM signing of email that you send from an email identity.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#email_identityString

The email identity.

Returns:

  • (String)


5730
5731
5732
5733
5734
5735
# File 'lib/aws-sdk-sesv2/types.rb', line 5730

class PutEmailIdentityDkimAttributesRequest < Struct.new(
  :email_identity,
  :signing_enabled)
  SENSITIVE = []
  include Aws::Structure
end

#signing_enabledBoolean

Sets the DKIM signing configuration for the identity.

When you set this value ‘true`, then the messages that are sent from the identity are signed using DKIM. If you set this value to `false`, your messages are sent without DKIM signing.

Returns:

  • (Boolean)


5730
5731
5732
5733
5734
5735
# File 'lib/aws-sdk-sesv2/types.rb', line 5730

class PutEmailIdentityDkimAttributesRequest < Struct.new(
  :email_identity,
  :signing_enabled)
  SENSITIVE = []
  include Aws::Structure
end