interface AgentAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnMessageTemplatePropsMixin.AgentAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnMessageTemplatePropsMixin_AgentAttributesProperty |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnMessageTemplatePropsMixin.AgentAttributesProperty |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnMessageTemplatePropsMixin.AgentAttributesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnMessageTemplatePropsMixin » 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 { mixins as wisdom_mixins } from '@aws-cdk/mixins-preview/aws-wisdom';
const agentAttributesProperty: wisdom_mixins.CfnMessageTemplatePropsMixin.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