Class: Aws::SESV2::Types::CreateEmailIdentityRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::CreateEmailIdentityRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
A request to begin the verification process for an email identity (an email address or domain).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration_set_name ⇒ String
The configuration set to use by default when sending from this identity.
-
#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, or, configures the key length to be used for [Easy DKIM].
-
#email_identity ⇒ String
The email address or domain to verify.
-
#tags ⇒ Array<Types::Tag>
An array of objects that define the tags (keys and values) to associate with the email identity.
Instance Attribute Details
#configuration_set_name ⇒ String
The configuration set to use by default when sending from this identity. Note that any configuration set defined in the email sending request takes precedence.
1067 1068 1069 1070 1071 1072 1073 1074 |
# File 'lib/aws-sdk-sesv2/types.rb', line 1067 class CreateEmailIdentityRequest < Struct.new( :email_identity, :tags, :dkim_signing_attributes, :configuration_set_name) SENSITIVE = [] include Aws::Structure end |
#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, or, configures the key length to be used for [Easy DKIM].
You can only specify this object if the email identity is a domain, as opposed to an address.
[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
1067 1068 1069 1070 1071 1072 1073 1074 |
# File 'lib/aws-sdk-sesv2/types.rb', line 1067 class CreateEmailIdentityRequest < Struct.new( :email_identity, :tags, :dkim_signing_attributes, :configuration_set_name) SENSITIVE = [] include Aws::Structure end |
#email_identity ⇒ String
The email address or domain to verify.
1067 1068 1069 1070 1071 1072 1073 1074 |
# File 'lib/aws-sdk-sesv2/types.rb', line 1067 class CreateEmailIdentityRequest < Struct.new( :email_identity, :tags, :dkim_signing_attributes, :configuration_set_name) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
An array of objects that define the tags (keys and values) to associate with the email identity.
1067 1068 1069 1070 1071 1072 1073 1074 |
# File 'lib/aws-sdk-sesv2/types.rb', line 1067 class CreateEmailIdentityRequest < Struct.new( :email_identity, :tags, :dkim_signing_attributes, :configuration_set_name) SENSITIVE = [] include Aws::Structure end |