Class: Aws::SESV2::Types::PutEmailIdentityDkimAttributesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::PutEmailIdentityDkimAttributesRequest
- Defined in:
- gems/aws-sdk-sesv2/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
-
#email_identity ⇒ String
The email identity.
-
#signing_enabled ⇒ Boolean
Sets the DKIM signing configuration for the identity.
Instance Attribute Details
#email_identity ⇒ String
The email identity.
7469 7470 7471 7472 7473 7474 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 7469 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 are sent from
the identity are signed using DKIM. If you set this value to
false, your messages are sent without DKIM signing.
7469 7470 7471 7472 7473 7474 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 7469 class PutEmailIdentityDkimAttributesRequest < Struct.new( :email_identity, :signing_enabled) SENSITIVE = [] include Aws::Structure end |