import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::Connect::User */ export declare function getUser(args: GetUserArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetUserArgs { /** * The Amazon Resource Name (ARN) for the user. */ userArn: string; } export interface GetUserResult { /** * After Contact Work configurations of a user. */ readonly afterContactWorkConfigs?: outputs.connect.UserAfterContactWorkConfigPerChannel[]; /** * Auto-accept configurations of a user. */ readonly autoAcceptConfigs?: outputs.connect.UserAutoAcceptConfig[]; /** * The identifier of the user account in the directory used for identity management. */ readonly directoryUserId?: string; /** * The identifier of the hierarchy group for the user. */ readonly hierarchyGroupArn?: string; /** * The information about the identity of the user. */ readonly identityInfo?: outputs.connect.UserIdentityInfo; /** * The identifier of the Amazon Connect instance. */ readonly instanceArn?: string; /** * Persistent Connection configurations of a user. */ readonly persistentConnectionConfigs?: outputs.connect.UserPersistentConnectionConfig[]; /** * The phone settings for the user. */ readonly phoneConfig?: outputs.connect.UserPhoneConfig; /** * Phone Number configurations of a user. */ readonly phoneNumberConfigs?: outputs.connect.UserPhoneNumberConfig[]; /** * The identifier of the routing profile for the user. */ readonly routingProfileArn?: string; /** * One or more security profile arns for the user */ readonly securityProfileArns?: string[]; /** * One or more tags. */ readonly tags?: outputs.Tag[]; /** * The Amazon Resource Name (ARN) for the user. */ readonly userArn?: string; /** * One or more predefined attributes assigned to a user, with a level that indicates how skilled they are. */ readonly userProficiencies?: outputs.connect.UserProficiency[]; /** * The user name for the account. */ readonly username?: string; /** * Voice Enhancement configurations of a user. */ readonly voiceEnhancementConfigs?: outputs.connect.UserVoiceEnhancementConfig[]; } /** * Resource Type definition for AWS::Connect::User */ export declare function getUserOutput(args: GetUserOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetUserOutputArgs { /** * The Amazon Resource Name (ARN) for the user. */ userArn: pulumi.Input; }