Class: Aws::QConnect::Types::AgentAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::AgentAttributes
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
Information about an agent.
Constant Summary collapse
- SENSITIVE =
[:first_name, :last_name]
Instance Attribute Summary collapse
-
#first_name ⇒ String
The agent’s first name as entered in their Amazon Connect user account.
-
#last_name ⇒ String
The agent’s last name as entered in their Amazon Connect user account.
Instance Attribute Details
#first_name ⇒ String
The agent’s first name as entered in their Amazon Connect user account.
535 536 537 538 539 540 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 535 class AgentAttributes < Struct.new( :first_name, :last_name) SENSITIVE = [:first_name, :last_name] include Aws::Structure end |
#last_name ⇒ String
The agent’s last name as entered in their Amazon Connect user account.
535 536 537 538 539 540 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 535 class AgentAttributes < Struct.new( :first_name, :last_name) SENSITIVE = [:first_name, :last_name] include Aws::Structure end |