Class: Aws::PinpointEmail::Types::IdentityInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointEmail::Types::IdentityInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpointemail/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.
Instance Attribute Details
#identity_name ⇒ String
The address or domain of the identity.
1692 1693 1694 1695 1696 1697 1698 |
# File 'lib/aws-sdk-pinpointemail/types.rb', line 1692 class IdentityInfo < Struct.new( :identity_type, :identity_name, :sending_enabled) SENSITIVE = [] include Aws::Structure end |
#identity_type ⇒ String
The email identity type. The identity type can be one of the following:
-
‘EMAIL_ADDRESS` – The identity is an email address.
-
‘DOMAIN` – The identity is a domain.
-
‘MANAGED_DOMAIN` – The identity is a domain that is managed by AWS.
1692 1693 1694 1695 1696 1697 1698 |
# File 'lib/aws-sdk-pinpointemail/types.rb', line 1692 class IdentityInfo < Struct.new( :identity_type, :identity_name, :sending_enabled) SENSITIVE = [] include Aws::Structure end |
#sending_enabled ⇒ Boolean
Indicates whether or not you can send email from the identity.
In Amazon Pinpoint, 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 Pinpoint to send email from that identity.
1692 1693 1694 1695 1696 1697 1698 |
# File 'lib/aws-sdk-pinpointemail/types.rb', line 1692 class IdentityInfo < Struct.new( :identity_type, :identity_name, :sending_enabled) SENSITIVE = [] include Aws::Structure end |