Class: Aws::PinpointEmail::Types::PutEmailIdentityDkimAttributesRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pinpointemail/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 that you want to change the DKIM settings for.

Returns:

  • (String)


2588
2589
2590
2591
2592
2593
# File 'lib/aws-sdk-pinpointemail/types.rb', line 2588

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 Amazon Pinpoint sends from the identity are DKIM-signed. When you set this value to `false`, then the messages that Amazon Pinpoint sends from the identity aren’t DKIM-signed.

Returns:

  • (Boolean)


2588
2589
2590
2591
2592
2593
# File 'lib/aws-sdk-pinpointemail/types.rb', line 2588

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