You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SESV2::Types::PutEmailIdentityDkimSigningAttributesRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing PutEmailIdentityDkimSigningAttributesRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  email_identity: "Identity", # required
  signing_attributes_origin: "AWS_SES", # required, accepts AWS_SES, EXTERNAL
  signing_attributes: {
    domain_signing_selector: "Selector", # required
    domain_signing_private_key: "PrivateKey", # required
  },
}

A request to change the DKIM attributes for an email identity.

Instance Attribute Summary collapse

Instance Attribute Details

#email_identityString

The email identity that you want to configure DKIM for.

Returns:

  • (String)

    The email identity that you want to configure DKIM for.

#signing_attributesTypes::DkimSigningAttributes

An object that contains information about the private key and selector that you want to use to configure DKIM for the identity. This object is only required if you want to configure Bring Your Own DKIM (BYODKIM) for the identity.

Returns:

  • (Types::DkimSigningAttributes)

    An object that contains information about the private key and selector that you want to use to configure DKIM for the identity.

#signing_attributes_originString

The method that you want to use to configure DKIM for the identity. There are two 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).

Returns:

  • (String)

    The method that you want to use to configure DKIM for the identity.