import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for AWS::AppStream::User */ export declare function getUser(args: GetUserArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetUserArgs { /** * The authentication type for the user. */ authenticationType: string; /** * The email address of the user. */ userName: string; } export interface GetUserResult { /** * Returns the Amazon Resource Name (ARN) for the Amazon AppStream User resource. */ readonly arn?: string; } /** * Resource Type definition for AWS::AppStream::User */ export declare function getUserOutput(args: GetUserOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetUserOutputArgs { /** * The authentication type for the user. */ authenticationType: pulumi.Input; /** * The email address of the user. */ userName: pulumi.Input; }