UNPKG

@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)

37 lines (36 loc) 1.03 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::MemoryDB::User */ export declare function getUser(args: GetUserArgs, opts?: pulumi.InvokeOptions): Promise<GetUserResult>; export interface GetUserArgs { /** * The name of the user. */ userName: string; } export interface GetUserResult { /** * The Amazon Resource Name (ARN) of the user account. */ readonly arn?: string; /** * Indicates the user status. Can be "active", "modifying" or "deleting". */ readonly status?: string; /** * An array of key-value pairs to apply to this user. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::MemoryDB::User */ export declare function getUserOutput(args: GetUserOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetUserResult>; export interface GetUserOutputArgs { /** * The name of the user. */ userName: pulumi.Input<string>; }