Class: Aws::SESV2::Types::CreateEmailIdentityResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::CreateEmailIdentityResponse
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
If the email identity is a domain, this object contains information about the DKIM verification status for the 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.
1260 1261 1262 1263 1264 1265 1266 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1260 class CreateEmailIdentityResponse < Struct.new( :identity_type, :verified_for_sending_status, :dkim_attributes) SENSITIVE = [] include Aws::Structure end |
#identity_type ⇒ String
The email identity type. Note: the MANAGED_DOMAIN identity type is
not supported.
1260 1261 1262 1263 1264 1265 1266 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1260 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. You can only send email from verified email addresses or domains. For more information about verifying identities, see the Amazon Pinpoint User Guide.
1260 1261 1262 1263 1264 1265 1266 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1260 class CreateEmailIdentityResponse < Struct.new( :identity_type, :verified_for_sending_status, :dkim_attributes) SENSITIVE = [] include Aws::Structure end |