Class: Aws::Connect::Types::UserIdentityInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::UserIdentityInfo
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Contains information about the identity of a user.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#email ⇒ String
The email address.
-
#first_name ⇒ String
The first name.
-
#last_name ⇒ String
The last name.
-
#mobile ⇒ String
The user's mobile number.
-
#secondary_email ⇒ String
The user's secondary email address.
Instance Attribute Details
#email ⇒ String
The email address. If you are using SAML for identity management and include this parameter, an error is returned.
12763 12764 12765 12766 12767 12768 12769 12770 12771 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 12763 class UserIdentityInfo < Struct.new( :first_name, :last_name, :email, :secondary_email, :mobile) SENSITIVE = [] include Aws::Structure end |
#first_name ⇒ String
The first name. This is required if you are using Amazon Connect or SAML for identity management.
12763 12764 12765 12766 12767 12768 12769 12770 12771 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 12763 class UserIdentityInfo < Struct.new( :first_name, :last_name, :email, :secondary_email, :mobile) SENSITIVE = [] include Aws::Structure end |
#last_name ⇒ String
The last name. This is required if you are using Amazon Connect or SAML for identity management.
12763 12764 12765 12766 12767 12768 12769 12770 12771 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 12763 class UserIdentityInfo < Struct.new( :first_name, :last_name, :email, :secondary_email, :mobile) SENSITIVE = [] include Aws::Structure end |
#mobile ⇒ String
The user's mobile number.
12763 12764 12765 12766 12767 12768 12769 12770 12771 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 12763 class UserIdentityInfo < Struct.new( :first_name, :last_name, :email, :secondary_email, :mobile) SENSITIVE = [] include Aws::Structure end |
#secondary_email ⇒ String
The user's secondary email address. If you provide a secondary email, the user receives email notifications - other than password reset notifications - to this email address instead of to their primary email address.
Pattern:
(?=^.\{0,265\}$)[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]\{2,63\}
12763 12764 12765 12766 12767 12768 12769 12770 12771 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 12763 class UserIdentityInfo < Struct.new( :first_name, :last_name, :email, :secondary_email, :mobile) SENSITIVE = [] include Aws::Structure end |