interface AgentAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnMessageTemplate.AgentAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnMessageTemplate_AgentAttributesProperty |
Java | software.amazon.awscdk.services.wisdom.CfnMessageTemplate.AgentAttributesProperty |
Python | aws_cdk.aws_wisdom.CfnMessageTemplate.AgentAttributesProperty |
TypeScript | aws-cdk-lib » aws_wisdom » CfnMessageTemplate » AgentAttributesProperty |
Information about an agent.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wisdom as wisdom } from 'aws-cdk-lib';
const agentAttributesProperty: wisdom.CfnMessageTemplate.AgentAttributesProperty = {
firstName: 'firstName',
lastName: 'lastName',
};
Properties
| Name | Type | Description |
|---|---|---|
| first | string | The agent’s first name as entered in their Amazon Connect user account. |
| last | string | The agent’s last name as entered in their Amazon Connect user account. |
firstName?
Type:
string
(optional)
The agent’s first name as entered in their Amazon Connect user account.
lastName?
Type:
string
(optional)
The agent’s last name as entered in their Amazon Connect user account.

.NET
Go
Java
Python
TypeScript