import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::Connect::User */ export declare class User extends pulumi.CustomResource { /** * Get an existing User resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): User; /** * Returns true if the given object is an instance of User. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is User; /** * After Contact Work configurations of a user. */ readonly afterContactWorkConfigs: pulumi.Output; /** * Auto-accept configurations of a user. */ readonly autoAcceptConfigs: pulumi.Output; /** * The identifier of the user account in the directory used for identity management. */ readonly directoryUserId: pulumi.Output; /** * The identifier of the hierarchy group for the user. */ readonly hierarchyGroupArn: pulumi.Output; /** * The information about the identity of the user. */ readonly identityInfo: pulumi.Output; /** * The identifier of the Amazon Connect instance. */ readonly instanceArn: pulumi.Output; /** * The password for the user account. A password is required if you are using Amazon Connect for identity management. Otherwise, it is an error to include a password. */ readonly password: pulumi.Output; /** * Persistent Connection configurations of a user. */ readonly persistentConnectionConfigs: pulumi.Output; /** * The phone settings for the user. */ readonly phoneConfig: pulumi.Output; /** * Phone Number configurations of a user. */ readonly phoneNumberConfigs: pulumi.Output; /** * The identifier of the routing profile for the user. */ readonly routingProfileArn: pulumi.Output; /** * One or more security profile arns for the user */ readonly securityProfileArns: pulumi.Output; /** * One or more tags. */ readonly tags: pulumi.Output; /** * The Amazon Resource Name (ARN) for the user. */ readonly userArn: pulumi.Output; /** * One or more predefined attributes assigned to a user, with a level that indicates how skilled they are. */ readonly userProficiencies: pulumi.Output; /** * The user name for the account. */ readonly username: pulumi.Output; /** * Voice Enhancement configurations of a user. */ readonly voiceEnhancementConfigs: pulumi.Output; /** * Create a User resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: UserArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a User resource. */ export interface UserArgs { /** * After Contact Work configurations of a user. */ afterContactWorkConfigs?: pulumi.Input[]>; /** * Auto-accept configurations of a user. */ autoAcceptConfigs?: pulumi.Input[]>; /** * The identifier of the user account in the directory used for identity management. */ directoryUserId?: pulumi.Input; /** * The identifier of the hierarchy group for the user. */ hierarchyGroupArn?: pulumi.Input; /** * The information about the identity of the user. */ identityInfo?: pulumi.Input; /** * The identifier of the Amazon Connect instance. */ instanceArn: pulumi.Input; /** * The password for the user account. A password is required if you are using Amazon Connect for identity management. Otherwise, it is an error to include a password. */ password?: pulumi.Input; /** * Persistent Connection configurations of a user. */ persistentConnectionConfigs?: pulumi.Input[]>; /** * The phone settings for the user. */ phoneConfig?: pulumi.Input; /** * Phone Number configurations of a user. */ phoneNumberConfigs?: pulumi.Input[]>; /** * The identifier of the routing profile for the user. */ routingProfileArn: pulumi.Input; /** * One or more security profile arns for the user */ securityProfileArns: pulumi.Input[]>; /** * One or more tags. */ tags?: pulumi.Input[]>; /** * One or more predefined attributes assigned to a user, with a level that indicates how skilled they are. */ userProficiencies?: pulumi.Input[]>; /** * The user name for the account. */ username?: pulumi.Input; /** * Voice Enhancement configurations of a user. */ voiceEnhancementConfigs?: pulumi.Input[]>; }