Class: Aws::Connect::Types::EmailRecipient

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

Overview

Information about the email recipient

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#addressString

Address of the email recipient.

Type: String

Length Constraints: Minimum length of 1. Maximum length of 256.

Returns:

  • (String)


8051
8052
8053
8054
8055
8056
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8051

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

#display_nameString

Display name of the email recipient.

Type: String

Length Constraints: Minimum length of 1. Maximum length of 256.

Returns:

  • (String)


8051
8052
8053
8054
8055
8056
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8051

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