Class: Aws::PinpointEmail::Types::PutEmailIdentityDkimAttributesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointEmail::Types::PutEmailIdentityDkimAttributesRequest
- 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
-
#email_identity ⇒ String
The email identity that you want to change the DKIM settings for.
-
#signing_enabled ⇒ Boolean
Sets the DKIM signing configuration for the identity.
Instance Attribute Details
#email_identity ⇒ String
The email identity that you want to change the DKIM settings for.
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_enabled ⇒ Boolean
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.
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 |