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
Note:
When making an API call, you may pass UserIdentityInfo data as a hash:
{
first_name: "AgentFirstName",
last_name: "AgentLastName",
email: "Email",
}
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.
Instance Attribute Details
#email ⇒ String
The email address. If you are using SAML for identity management and include this parameter, an error is returned.
10407 10408 10409 10410 10411 10412 10413 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 10407 class UserIdentityInfo < Struct.new( :first_name, :last_name, :email) 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.
10407 10408 10409 10410 10411 10412 10413 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 10407 class UserIdentityInfo < Struct.new( :first_name, :last_name, :email) 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.
10407 10408 10409 10410 10411 10412 10413 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 10407 class UserIdentityInfo < Struct.new( :first_name, :last_name, :email) SENSITIVE = [] include Aws::Structure end |