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