Class: Aws::Connect::Types::EmailAddressInfo

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-connect/types.rb

Overview

Contains information about a source or destination email address

Constant Summary collapse

SENSITIVE =
[:email_address, :display_name]

Instance Attribute Summary collapse

Instance Attribute Details

#display_nameString

The display name of email address.

Returns:

  • (String)


7914
7915
7916
7917
7918
7919
# File 'lib/aws-sdk-connect/types.rb', line 7914

class EmailAddressInfo < Struct.new(
  :email_address,
  :display_name)
  SENSITIVE = [:email_address, :display_name]
  include Aws::Structure
end

#email_addressString

The email address with the instance, in [^\s@]+@\.[^\s@] format.

Returns:

  • (String)


7914
7915
7916
7917
7918
7919
# File 'lib/aws-sdk-connect/types.rb', line 7914

class EmailAddressInfo < Struct.new(
  :email_address,
  :display_name)
  SENSITIVE = [:email_address, :display_name]
  include Aws::Structure
end