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
- Struct
- Aws::SESV2::Types::CreateEmailIdentityRequest
- Defined in:
- (unknown)
Overview
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
-
#dkim_signing_attributes ⇒ 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_identity ⇒ String
The email address or domain that you want to verify.
-
#tags ⇒ Array<Types::Tag>
An array of objects that define the tags (keys and values) that you want to associate with the email identity.
Instance Attribute Details
#dkim_signing_attributes ⇒ 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.
You can only specify this object if the email identity is a domain, as opposed to an address.
#email_identity ⇒ String
The email address or domain that you want to verify.
#tags ⇒ Array<Types::Tag>
An array of objects that define the tags (keys and values) that you want to associate with the email identity.