interface CfnUserProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Connect.CfnUserProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnUserProps |
Java | software.amazon.awscdk.services.connect.CfnUserProps |
Python | aws_cdk.aws_connect.CfnUserProps |
TypeScript | aws-cdk-lib » aws_connect » CfnUserProps |
Properties for defining a CfnUser
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-user.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const cfnUserProps: connect.CfnUserProps = {
instanceArn: 'instanceArn',
phoneConfig: {
phoneType: 'phoneType',
// the properties below are optional
afterContactWorkTimeLimit: 123,
autoAccept: false,
deskPhoneNumber: 'deskPhoneNumber',
},
routingProfileArn: 'routingProfileArn',
securityProfileArns: ['securityProfileArns'],
username: 'username',
// the properties below are optional
directoryUserId: 'directoryUserId',
hierarchyGroupArn: 'hierarchyGroupArn',
identityInfo: {
email: 'email',
firstName: 'firstName',
lastName: 'lastName',
mobile: 'mobile',
secondaryEmail: 'secondaryEmail',
},
password: 'password',
tags: [{
key: 'key',
value: 'value',
}],
userProficiencies: [{
attributeName: 'attributeName',
attributeValue: 'attributeValue',
level: 123,
}],
};
Properties
Name | Type | Description |
---|---|---|
instance | string | The Amazon Resource Name (ARN) of the instance. |
phone | IResolvable | User | Information about the phone configuration for the user. |
routing | string | The Amazon Resource Name (ARN) of the user's routing profile. |
security | string[] | The Amazon Resource Name (ARN) of the user's security profile. |
username | string | The user name assigned to the user account. |
directory | string | The identifier of the user account in the directory used for identity management. |
hierarchy | string | The Amazon Resource Name (ARN) of the user's hierarchy group. |
identity | IResolvable | User | Information about the user identity. |
password? | string | The user's password. |
tags? | Cfn [] | The tags. |
user | IResolvable | IResolvable | User [] | One or more predefined attributes assigned to a user, with a numeric value that indicates how their level of skill in a specified area. |
instanceArn
Type:
string
The Amazon Resource Name (ARN) of the instance.
phoneConfig
Type:
IResolvable
|
User
Information about the phone configuration for the user.
routingProfileArn
Type:
string
The Amazon Resource Name (ARN) of the user's routing profile.
securityProfileArns
Type:
string[]
The Amazon Resource Name (ARN) of the user's security profile.
username
Type:
string
The user name assigned to the user account.
directoryUserId?
Type:
string
(optional)
The identifier of the user account in the directory used for identity management.
hierarchyGroupArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the user's hierarchy group.
identityInfo?
Type:
IResolvable
|
User
(optional)
Information about the user identity.
password?
Type:
string
(optional)
The user's password.
tags?
Type:
Cfn
[]
(optional)
The tags.
userProficiencies?
Type:
IResolvable
|
IResolvable
|
User
[]
(optional)
One or more predefined attributes assigned to a user, with a numeric value that indicates how their level of skill in a specified area.