Class: Aws::Connect::Types::UserIdentityInfoLite
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::UserIdentityInfoLite
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
The user's first name and last name.
Constant Summary collapse
- SENSITIVE =
[:first_name, :last_name]
Instance Attribute Summary collapse
-
#first_name ⇒ String
The user's first name.
-
#last_name ⇒ String
The user's last name.
Instance Attribute Details
#first_name ⇒ String
The user's first name.
26070 26071 26072 26073 26074 26075 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 26070 class UserIdentityInfoLite < Struct.new( :first_name, :last_name) SENSITIVE = [:first_name, :last_name] include Aws::Structure end |
#last_name ⇒ String
The user's last name.
26070 26071 26072 26073 26074 26075 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 26070 class UserIdentityInfoLite < Struct.new( :first_name, :last_name) SENSITIVE = [:first_name, :last_name] include Aws::Structure end |