AWS Fundamentals Logo
AWS Fundamentals
AWS::Connect::User

Connect User

Resource Type definition for AWS::Connect::User

Properties

16 configurable properties. 4 required. Click a row to see details.

Filter:
PropertyTypeFlags
InstanceArn
string
Required
RoutingProfileArn
string
Required
SecurityProfileArns
Array<string>
Required
Username
string
Required
AfterContactWorkConfigs
Array<AfterContactWorkConfigPerChannel>
AutoAcceptConfigs
Array<AutoAcceptConfig>
DirectoryUserId
string
HierarchyGroupArn
string
IdentityInfo
UserIdentityInfo
Password
string
Write-only
PersistentConnectionConfigs
Array<PersistentConnectionConfig>
PhoneConfig
UserPhoneConfig
PhoneNumberConfigs
Array<PhoneNumberConfig>
Tags
Array<Tag>
UserProficiencies
Array<UserProficiency>
VoiceEnhancementConfigs
Array<VoiceEnhancementConfig>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
UserArnstringThe Amazon Resource Name (ARN) for the user.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Connect::User

Resources:
  MyResource:
    Type: AWS::Connect::User
    Properties:
      InstanceArn: "arn:aws:service:region:account:resource"
      RoutingProfileArn: "arn:aws:service:region:account:resource"
      SecurityProfileArns: "arn:aws:service:region:account:resource"
      Username: "my-username"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

connect:CreateUserconnect:TagResourceconnect:AssociateUserProficiencies

read

connect:DescribeUserconnect:ListUserProficiencies

delete

connect:DeleteUserconnect:UntagResource

update

connect:UpdateUserIdentityInfoconnect:UpdateUserPhoneConfigconnect:UpdateUserRoutingProfileconnect:UpdateUserSecurityProfilesconnect:UpdateUserHierarchyconnect:TagResourceconnect:UntagResourceconnect:AssociateUserProficiencies

list

connect:ListUsers

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceConnect
Properties17
Required4
TaggingSupported
Primary IDUserArn

Supported Operations

CreateReadDeleteUpdateList

External Links