Class: Aws::SESV2::Types::IdentityInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::IdentityInfo
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
Information about an email identity.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identity_name ⇒ String
The address or domain of the identity.
-
#identity_type ⇒ String
The email identity type.
-
#sending_enabled ⇒ Boolean
Indicates whether or not you can send email from the identity.
-
#verification_status ⇒ String
The verification status of the identity.
Instance Attribute Details
#identity_name ⇒ String
The address or domain of the identity.
3824 3825 3826 3827 3828 3829 3830 3831 |
# File 'lib/aws-sdk-sesv2/types.rb', line 3824 class IdentityInfo < Struct.new( :identity_type, :identity_name, :sending_enabled, :verification_status) SENSITIVE = [] include Aws::Structure end |
#identity_type ⇒ String
The email identity type. Note: the ‘MANAGED_DOMAIN` type is not supported for email identity types.
3824 3825 3826 3827 3828 3829 3830 3831 |
# File 'lib/aws-sdk-sesv2/types.rb', line 3824 class IdentityInfo < Struct.new( :identity_type, :identity_name, :sending_enabled, :verification_status) SENSITIVE = [] include Aws::Structure end |
#sending_enabled ⇒ Boolean
Indicates whether or not you can send email from the identity.
An identity is an email address or domain that you send email from. Before you can send email from an identity, you have to demostrate that you own the identity, and that you authorize Amazon SES to send email from that identity.
3824 3825 3826 3827 3828 3829 3830 3831 |
# File 'lib/aws-sdk-sesv2/types.rb', line 3824 class IdentityInfo < Struct.new( :identity_type, :identity_name, :sending_enabled, :verification_status) SENSITIVE = [] include Aws::Structure end |
#verification_status ⇒ String
The verification status of the identity. The status can be one of the following:
-
‘PENDING` – The verification process was initiated, but Amazon SES hasn’t yet been able to verify the identity.
-
‘SUCCESS` – The verification process completed successfully.
-
‘FAILED` – The verification process failed.
-
‘TEMPORARY_FAILURE` – A temporary issue is preventing Amazon SES from determining the verification status of the identity.
-
‘NOT_STARTED` – The verification process hasn’t been initiated for the identity.
3824 3825 3826 3827 3828 3829 3830 3831 |
# File 'lib/aws-sdk-sesv2/types.rb', line 3824 class IdentityInfo < Struct.new( :identity_type, :identity_name, :sending_enabled, :verification_status) SENSITIVE = [] include Aws::Structure end |