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

Class: Aws::SESV2::Types::CreateEmailIdentityRequest

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

Overview

Note:

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

{
  email_identity: "Identity", # required
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
  dkim_signing_attributes: {
    domain_signing_selector: "Selector", # required
    domain_signing_private_key: "PrivateKey", # required
  },
}

A request to begin the verification process for an email identity (an email address or domain).

Instance Attribute Summary collapse

Instance Attribute Details

#dkim_signing_attributesTypes::DkimSigningAttributes

If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, as opposed to the default method, Easy DKIM.

You can only specify this object if the email identity is a domain, as opposed to an address.

Returns:

  • (Types::DkimSigningAttributes)

    If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, as opposed to the default method, [Easy DKIM][1].

#email_identityString

The email address or domain that you want to verify.

Returns:

  • (String)

    The email address or domain that you want to verify.

#tagsArray<Types::Tag>

An array of objects that define the tags (keys and values) that you want to associate with the email identity.

Returns:

  • (Array<Types::Tag>)

    An array of objects that define the tags (keys and values) that you want to associate with the email identity.