@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
36 lines (35 loc) • 1 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource Type definition for AWS::AppStream::User
*/
export declare function getUser(args: GetUserArgs, opts?: pulumi.InvokeOptions): Promise<GetUserResult>;
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<GetUserResult>;
export interface GetUserOutputArgs {
/**
* The authentication type for the user.
*/
authenticationType: pulumi.Input<string>;
/**
* The email address of the user.
*/
userName: pulumi.Input<string>;
}