Class: Aws::SESV2::Types::IdentityInfo

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb

Overview

Information about an email identity.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#identity_nameString

The address or domain of the identity.

Returns:

  • (String)


3769
3770
3771
3772
3773
3774
3775
3776
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 3769

class IdentityInfo < Struct.new(
  :identity_type,
  :identity_name,
  :sending_enabled,
  :verification_status)
  SENSITIVE = []
  include Aws::Structure
end

#identity_typeString

The email identity type. Note: the MANAGED_DOMAIN type is not supported for email identity types.

Returns:

  • (String)


3769
3770
3771
3772
3773
3774
3775
3776
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 3769

class IdentityInfo < Struct.new(
  :identity_type,
  :identity_name,
  :sending_enabled,
  :verification_status)
  SENSITIVE = []
  include Aws::Structure
end

#sending_enabledBoolean

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.

Returns:

  • (Boolean)


3769
3770
3771
3772
3773
3774
3775
3776
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 3769

class IdentityInfo < Struct.new(
  :identity_type,
  :identity_name,
  :sending_enabled,
  :verification_status)
  SENSITIVE = []
  include Aws::Structure
end

#verification_statusString

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.

Returns:

  • (String)


3769
3770
3771
3772
3773
3774
3775
3776
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 3769

class IdentityInfo < Struct.new(
  :identity_type,
  :identity_name,
  :sending_enabled,
  :verification_status)
  SENSITIVE = []
  include Aws::Structure
end