Class: Aws::SES::Types::SetIdentityDkimEnabledRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::SetIdentityDkimEnabledRequest
- 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
-
#dkim_enabled ⇒ Boolean
Sets whether DKIM signing is enabled for an identity.
-
#identity ⇒ String
The identity for which DKIM signing should be enabled or disabled.
Instance Attribute Details
#dkim_enabled ⇒ Boolean
Sets whether DKIM signing is enabled for an identity. Set to true
to enable DKIM signing for this identity; false
to disable it.
4569 4570 4571 4572 4573 4574 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 4569 class SetIdentityDkimEnabledRequest < Struct.new( :identity, :dkim_enabled) SENSITIVE = [] include Aws::Structure end |
#identity ⇒ String
The identity for which DKIM signing should be enabled or disabled.
4569 4570 4571 4572 4573 4574 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 4569 class SetIdentityDkimEnabledRequest < Struct.new( :identity, :dkim_enabled) SENSITIVE = [] include Aws::Structure end |