Class: Aws::PinpointEmail::Types::CreateEmailIdentityResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointEmail::Types::CreateEmailIdentityResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpointemail/types.rb
Overview
If the email identity is a domain, this object contains tokens that you can use to create a set of CNAME records. To sucessfully verify your domain, you have to add these records to the DNS configuration for your domain.
If the email identity is an email address, this object is empty.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dkim_attributes ⇒ Types::DkimAttributes
An object that contains information about the DKIM attributes for the identity.
-
#identity_type ⇒ String
The email identity type.
-
#verified_for_sending_status ⇒ Boolean
Specifies whether or not the identity is verified.
Instance Attribute Details
#dkim_attributes ⇒ Types::DkimAttributes
An object that contains information about the DKIM attributes for the identity. This object includes the tokens that you use to create the CNAME records that are required to complete the DKIM verification process.
404 405 406 407 408 409 410 |
# File 'lib/aws-sdk-pinpointemail/types.rb', line 404 class CreateEmailIdentityResponse < Struct.new( :identity_type, :verified_for_sending_status, :dkim_attributes) SENSITIVE = [] include Aws::Structure end |
#identity_type ⇒ String
The email identity type.
404 405 406 407 408 409 410 |
# File 'lib/aws-sdk-pinpointemail/types.rb', line 404 class CreateEmailIdentityResponse < Struct.new( :identity_type, :verified_for_sending_status, :dkim_attributes) SENSITIVE = [] include Aws::Structure end |
#verified_for_sending_status ⇒ Boolean
Specifies whether or not the identity is verified. In Amazon Pinpoint, you can only send email from verified email addresses or domains. For more information about verifying identities, see the [Amazon Pinpoint User Guide].
[1]: docs.aws.amazon.com/pinpoint/latest/userguide/channels-email-manage-verify.html
404 405 406 407 408 409 410 |
# File 'lib/aws-sdk-pinpointemail/types.rb', line 404 class CreateEmailIdentityResponse < Struct.new( :identity_type, :verified_for_sending_status, :dkim_attributes) SENSITIVE = [] include Aws::Structure end |