Class: Aws::SESV2::Types::PutEmailIdentityDkimSigningAttributesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::PutEmailIdentityDkimSigningAttributesRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
A request to change the DKIM attributes for an email identity.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#email_identity ⇒ String
The email identity.
-
#signing_attributes ⇒ Types::DkimSigningAttributes
An object that contains information about the private key and selector that you want to use to configure DKIM for the identity for Bring Your Own DKIM (BYODKIM) for the identity, or, configures the key length to be used for [Easy DKIM].
-
#signing_attributes_origin ⇒ String
The method to use to configure DKIM for the identity.
Instance Attribute Details
#email_identity ⇒ String
The email identity.
5889 5890 5891 5892 5893 5894 5895 |
# File 'lib/aws-sdk-sesv2/types.rb', line 5889 class PutEmailIdentityDkimSigningAttributesRequest < Struct.new( :email_identity, :signing_attributes_origin, :signing_attributes) SENSITIVE = [] include Aws::Structure end |
#signing_attributes ⇒ Types::DkimSigningAttributes
An object that contains information about the private key and selector that you want to use to configure DKIM for the identity for Bring Your Own DKIM (BYODKIM) for the identity, or, configures the key length to be used for [Easy DKIM].
[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
5889 5890 5891 5892 5893 5894 5895 |
# File 'lib/aws-sdk-sesv2/types.rb', line 5889 class PutEmailIdentityDkimSigningAttributesRequest < Struct.new( :email_identity, :signing_attributes_origin, :signing_attributes) SENSITIVE = [] include Aws::Structure end |
#signing_attributes_origin ⇒ String
The method to use to configure DKIM for the identity. There are the following possible values:
-
‘AWS_SES` – Configure DKIM for the identity by using [Easy DKIM].
-
‘EXTERNAL` – Configure DKIM for the identity by using Bring Your Own DKIM (BYODKIM).
[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
5889 5890 5891 5892 5893 5894 5895 |
# File 'lib/aws-sdk-sesv2/types.rb', line 5889 class PutEmailIdentityDkimSigningAttributesRequest < Struct.new( :email_identity, :signing_attributes_origin, :signing_attributes) SENSITIVE = [] include Aws::Structure end |