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)


8642
8643
8644
8645
8646
8647
# File 'lib/aws-sdk-connect/types.rb', line 8642

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

#email_addressString

The email address, including the domain.

Returns:

  • (String)


8642
8643
8644
8645
8646
8647
# File 'lib/aws-sdk-connect/types.rb', line 8642

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